subscribed property

bool get subscribed

Whether the channel is subscribed or not.

Implementation

bool get subscribed => _subscribed;
  1. @protected
set subscribed (bool value)

Sets the value of the subscribed property.

Implementation

@protected
set subscribed(bool value) {
  _subscribed = value;
}