addAll method

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

Implementation

void addAll(Map<K, V> other) {
  _checkKeys(other.keys);
  _checkValues(other.values);
  _safeMap.addAll(other);
}