addActiveMap<K, V> static method

ActiveStateChanged addActiveMap<K, V>(
  1. Map<K, V> addedMap, {
  2. String? typeName,
})

addActiveMap Method that describes ActiveStateChanged of type ActiveMap when you describing what new map values were added to another map

Implementation

static ActiveStateChanged addActiveMap<K, V>(Map<K, V> addedMap,
    {String? typeName}) {
  return ActiveStateChanged(addedMap, null,
      typeName: typeName, info: 'Added Map To Map : $addedMap');
}