values property

Stream<T> values

Implementation

Stream<T> get values async* {
  while (!canceled) {
    yield await nextValue;
  }
}