updateAllValues method

void updateAllValues(
  1. V updater(
    1. K key,
    2. V value
    )
)

Implementation

void updateAllValues(V Function(K key, V value) updater) {
  $.updateAll(updater);
  notifyChange();
}