entriesActiveMap<K, V> static method

ActiveStateChanged entriesActiveMap<K, V>(
  1. Iterable<MapEntry<K, V>> mapEntries, {
  2. String? typeName,
})

entriesActiveMap Method that describes ActiveStateChanged of type ActiveMap when you add entry objects to the map

Implementation

static ActiveStateChanged entriesActiveMap<K, V>(
    Iterable<MapEntry<K, V>> mapEntries,
    {String? typeName}) {
  return ActiveStateChanged(mapEntries, null,
      typeName: typeName, info: 'Added Entries To Map: $mapEntries');
}