on<T extends ChatEvent> method
Stream of specific event type.
Implementation
Stream<T> on<T extends ChatEvent>() =>
_eventController.stream.where((e) => e is T).cast<T>();
Stream of specific event type.
Stream<T> on<T extends ChatEvent>() =>
_eventController.stream.where((e) => e is T).cast<T>();