valuesStream method

Stream<List<V>> valuesStream()

Receive a list of all the values in this database, updated whenever the values change.

Implementation

Stream<List<V>> valuesStream() {
  return _valuesController.stream;
}