update method
see dart core documentation
Implementation
@override
V update(K key, V Function(V value) update, {V Function()? ifAbsent}) {
var r = value.update(key, update, ifAbsent: ifAbsent);
emit();
return r;
}
see dart core documentation
@override
V update(K key, V Function(V value) update, {V Function()? ifAbsent}) {
var r = value.update(key, update, ifAbsent: ifAbsent);
emit();
return r;
}