configStream property

Stream<ChannelConfig?> configStream

Channel configuration as a stream.

Implementation

Stream<ChannelConfig?> get configStream {
  _checkInitialized();
  return state!.channelStateStream.map((cs) => cs.channel?.config);
}