addActiveMap<K, V> static method
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');
}