updateAll 方法

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

不可变Map不支持此操作。

实现

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