updateAll method

void updateAll(
  1. V update(
    1. K key,
    2. V value
    )
)

Implementation

void updateAll(V Function(K key, V value) update) {
  value.updateAll(update);
  set(value, force: true);
}