update method
- 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 Function()? ifAbsent}) {
throw UnsupportedError("Cannot modify unmodifiable map");
}