PersistentMap<K, V> constructor
PersistentMap<K, V> (})
Create a new PersistentMap, with the underlying dbm database, key and value serialization functions, and an optional value comparator.
Implementation
PersistentMap(this._dbm, this._keySerializer, this._keyDeserializer,
this._valueSerializer, this._valueDeserializer,
{bool Function(V, V)? valueComparator}) {
if (valueComparator != null) _valueComparator = valueComparator;
}