subscriptionState property

TrackSubscriptionState get subscriptionState

Implementation

TrackSubscriptionState get subscriptionState {
  if (!_subscriptionAllowed) return TrackSubscriptionState.notAllowed;
  return super.subscribed ? TrackSubscriptionState.subscribed : TrackSubscriptionState.unsubscribed;
}