updateAll method

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

Updates all values.

Iterates over all entries in the map and updates them with the result of invoking update.

Implementation

@override
void updateAll(V Function(K key, V value) update) {
  super.value.updateAll(update);
  if (notifyOnChangeMap) {
    notifyListeners();
  }
}