Subscribes to a specific event type.
@override Stream<T> on<T extends ChatEvent>() { return _controller.stream.where((e) => e is T).cast<T>(); }