updateAllValues method

void updateAllValues(
  1. V update(
    1. K,
    2. V
    )
)

Implementation

void updateAllValues(V Function(K, V) update) {
  _safeMap.updateAll(update);
}