NotifiableMap<K, V>.from constructor

NotifiableMap<K, V>.from(
  1. 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);
}