dataStream property

Stream<Map<TKey, TVal>> dataStream

Notifies the user when any write operations occur.

Implementation

Stream<Map<TKey, TVal>> get dataStream async* {
  yield getAllValues();
  yield* dataBox.watch().map((value) => getAllValues());
}