addAll method

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

This operation is not supported by an unmodifiable map.

Implementation

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