addAll method

  1. @override
void addAll(
  1. Map<K, V> other
)
override

see dart core documentation

Implementation

@override
void addAll(Map<K, V> other) {
  value.addAll(other);
  emit();
}