pusherErrorEventStream property

Stream<PusherChannelsReadEvent> pusherErrorEventStream

Used to listen for events with name pusher:error.

Implementation

Stream<PusherChannelsReadEvent> get pusherErrorEventStream => eventStream
    .whereType<PusherChannelsErrorEvent>()
    .map(PusherChannelsReadEvent.fromReadable);