onErrorReturn method

Stream<T> onErrorReturn(
  1. T returnValue
)

Instructs a Stream to emit a particular item when it encounters an error, and then terminate normally

The onErrorReturn operator intercepts an onError notification from the source Stream. Instead of passing it through to any observers, it replaces it with a given item, and then terminates normally.

If you need to perform logic based on the type of error that was emitted, please consider using onErrorReturnWith.

Example

ErrorStream(Exception())
  .onErrorReturn(1)
  .listen(print); // prints 1

Implementation

Stream<T> onErrorReturn(T returnValue) =>
    OnErrorResumeStreamTransformer<T>((_, __) => Stream.value(returnValue))
        .bind(this);