startWith method

Stream<T> startWith(
  1. T value
)

Implementation

Stream<T> startWith(T value) async* {
  yield value;
  yield* this;
}