subscriptionState property

TrackSubscriptionState subscriptionState

Implementation

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