putIfAbsent method Null safety

V putIfAbsent (
  1. K key,
  2. V ifAbsent(
      )
    )
    inherited

    This operation is not supported by an unmodifiable map.

    Implementation

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