putAllAndUpdateExisting abstract method
Future<void>
putAllAndUpdateExisting(
- Map<
TKey, TVal> newValues, - void mutateExisting(
- TKey key,
- TVal mutateMe,
- TVal newValueReadOnly
Same as putAll, but instead of removing old objects, changes (mutates) their values to new values
Implementation
Future<void> putAllAndUpdateExisting(
Map<TKey, TVal> newValues,
void Function(TKey key, TVal mutateMe, TVal newValueReadOnly)
mutateExisting,
);