updateAll 方法

void updateAll(
  1. V update(
    1. K key,
    2. V value
    )
)
继承

不可修改的映射不支持此操作。

实现

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