messages property

Stream<Message> messages

Stream of all messages coming through this channel from the backend.

Implementation

Stream<Message> get messages => _controller.stream.where(
      (message) => !message.event.isReply || message.event.isChannelReply,
    );