valueWithUpdates property

Stream<TInput> valueWithUpdates

Yields value if it's loaded, then relays to updates.

Implementation

Stream<TInput> get valueWithUpdates async* {
  if (loaded) {
    yield value;
  }
  yield* updates;
}