update 方法

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

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

    实现

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