valuesStream property

Stream<Iterable<T>> valuesStream
inherited

Notifies the user when any write operations occur.

Implementation

Stream<Iterable<TVal>> get valuesStream async* {
  yield dataBox.values;
  yield* dataBox.watch().map((value) => dataBox.values);
}