addedEntriesToMap<K, V> method
Null safety
A factory method which creates a single EmpireStateChanged object with a description describing what MapEntry objects were added to the map
Implementation
static EmpireStateChanged addedEntriesToMap<K, V>(
Iterable<MapEntry<K, V>> entries,
{String? propertyName}) {
return EmpireStateChanged(entries, null,
propertyName: propertyName,
description: 'Added Entries To Map: $entries');
}