addAll method

void addAll (Map<K, V> other)
inherited

This operation is not supported by an unmodifiable map.

Implementation

void addAll(Map<K, V> other) {
  throw UnsupportedError("Cannot modify unmodifiable map");
}