entryActiveMap<K, V> static method

ActiveStateChanged entryActiveMap<K, V>(
  1. K key,
  2. V newValue, {
  3. String? typeName,
})

entryActiveMap Method that describes ActiveStateChanged of type ActiveMap when you add a new entry key/value is added to the map

Implementation

static ActiveStateChanged entryActiveMap<K, V>(K key, V newValue,
    {String? typeName}) {
  final mapEntry = MapEntry(key, newValue);
  return ActiveStateChanged(mapEntry, null,
      typeName: typeName, info: 'Added Entry To Map : $mapEntry');
}