eventStream property
Stream<PusherChannelsReadEvent>
get
eventStream
Used to listen for all the events received from a server.
Implementation
Stream<PusherChannelsReadEvent> get eventStream => controller.eventStream
.whereType<PusherChannelsReadEventMixin>()
.map(PusherChannelsReadEvent.fromReadable);