update 方法

V update(
  1. K key,
  2. V update(
    1. V value
    ),
  3. {V ifAbsent(
      )?}
    )
    inherited

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

    实现

    V update(K key, V update(V value), {V Function()? ifAbsent}) {
      throw UnsupportedError("Cannot modify unmodifiable map");
    }