removedActiveMap<K, V> static method
removedActiveMap Method that describes ActiveStateChanged of type ActiveMap when you remove an entry from map
Implementation
static ActiveStateChanged<V> removedActiveMap<K, V>(K key, V newValue,
{String? typeName}) {
final mapEntry = MapEntry(key, newValue);
return ActiveStateChanged<V>(null, newValue,
typeName: typeName, info: 'Removed From Map: $mapEntry');
}