assign method
Replaces all entries with those from other in a single notification.
Implementation
void assign(Map<K, V> other) {
value
..clear()
..addAll(other);
refresh();
}
Replaces all entries with those from other in a single notification.
void assign(Map<K, V> other) {
value
..clear()
..addAll(other);
refresh();
}