onSubscriptionError method

Stream<ChannelReadEvent> onSubscriptionError({
  1. String? errorType,
})

Implementation

Stream<ChannelReadEvent> onSubscriptionError({String? errorType}) =>
    bind(Channel.subscriptionErrorEventName).where(
      (event) => _filterSubscriptionErrorPredicate(errorType, event),
    );