addedMapToMap<K, V> method Null safety

EmpireStateChanged addedMapToMap<K, V>(
  1. Map<K, V> addedMap,
  2. {String? propertyName}
)

A factory method which creates a single EmpireStateChanged object with a description describing what new map values were added to another map

Implementation

static EmpireStateChanged addedMapToMap<K, V>(Map<K, V> addedMap,
    {String? propertyName}) {
  return EmpireStateChanged(addedMap, null,
      propertyName: propertyName, description: 'Added Map To Map: $addedMap');
}