update 方法
- K key,
- V update(
- V value
- V ifAbsent()?,
继承
此操作不支持不可修改的映射。
实现
V update(K key, V update(V value), {V Function()? ifAbsent}) {
throw UnsupportedError("Cannot modify unmodifiable map");
}
此操作不支持不可修改的映射。
V update(K key, V update(V value), {V Function()? ifAbsent}) {
throw UnsupportedError("Cannot modify unmodifiable map");
}