update method
See Map.update.
Implementation
@override
B update(A key, B Function(B value) update, {B Function()? ifAbsent}) {
return data.update(key, update, ifAbsent: ifAbsent);
}
See Map.update.
@override
B update(A key, B Function(B value) update, {B Function()? ifAbsent}) {
return data.update(key, update, ifAbsent: ifAbsent);
}