NotifiableMap<K, V>.of constructor

NotifiableMap<K, V>.of(
  1. Map<K, V> other
)

Create a NotifiableMap by adding all elements of other of types K, V.

Implementation

NotifiableMap.of(Map<K, V> other) : super() {
  _values = Map<K, V>.of(other);
}