or method

Stream<T> or(
  1. T fallback
)

Implementation

Stream<T> or(T fallback) => map((value) => value ?? fallback);