update method

V update (K key, V update(V value), { V ifAbsent() })
inherited

This operation is not supported by an unmodifiable map.

Implementation

V update(K key, V update(V value), {V ifAbsent()}) {
  throw UnsupportedError("Cannot modify unmodifiable map");
}