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 = $.update(key, update, ifAbsent: ifAbsent);
notifyChange();
return result;
}