updateValue method
      
V
updateValue(
    
- K key,
- V update(- V
 
- V ifAbsent()?,
As Map.update.
Implementation
V updateValue(K key, V Function(V) update, {V Function()? ifAbsent}) =>
    _safeMap.update(key, update, ifAbsent: ifAbsent);