cooldownStream property

Stream<int> cooldownStream

Cooldown count as a stream

Implementation

Stream<int> get cooldownStream {
  _checkInitialized();
  return state!.channelStateStream.map((cs) => cs.channel?.cooldown ?? 0);
}