updateAll method
void
updateAll(
- V update(
- K key,
- V value
Implementation
void updateAll(V Function(K key, V value) update) => _lruMap.updateAll((key, entry) => entry..value = update(key, entry.value));