NotifiableMap<K, V>.from constructor
Null safety
- Map<
K, V> other
Create a NotifiableMap by adding all elements from other
, regardless of their type.
Implementation
NotifiableMap.from(Map<K, V> other) : super() {
_values = Map<K, V>.from(other);
}