operator []= 方法

void operator []=(
  1. K key,
  2. V value
)
继承

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

实现

void operator []=(K key, V value) {
  throw UnsupportedError("Cannot modify unmodifiable map");
}