disabledStream property

Stream<bool> disabledStream

Channel disabled status as a stream.

Implementation

Stream<bool> get disabledStream {
  _checkInitialized();
  return state!.channelStateStream.map((cs) => cs.channel?.disabled == true);
}