eventStream property

Used to listen for all the events received from a server.

Implementation

Stream<PusherChannelsReadEvent> get eventStream => controller.eventStream
    .whereType<PusherChannelsReadEventMixin>()
    .map(PusherChannelsReadEvent.fromReadable);