MapDB<K, V> constructor

MapDB<K, V>()

Constructs an empty MapDB.

Implementation

MapDB() {
  _streamController.stream.listen((event) {
    // the values may have changed
    _valuesController.add(values().toList(growable: false));
  });
}