endWith method

Stream<T> endWith(
  1. T value
)

Implementation

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