updateAll method
void
updateAll(
- V update(
- K key,
- V value
Update all values (convenience method)
Implementation
void updateAll(V Function(K key, V value) update) {
final result = tryUpdateAll(update);
if (result.isFailure) {
RxLogger.logError(result.errorOrNull!, context: 'Map');
}
}