update method
V
update(
- K key,
- V update(
- V value
- V ifAbsent()?,
Implementation
V update(K key, V Function(V value) update, {V Function()? ifAbsent}) {
final result = value.update(key, update, ifAbsent: ifAbsent);
set(value, force: true);
return result;
}