NotifiableMap<K, V>.of constructor
Null safety
- 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);
}