MapAction<K, V> constructor

const MapAction<K, V>(
  1. Map<K, V> _map(),
  2. void add(
    1. K key,
    2. V entry
    ),
  3. void addAll(
    1. Map<K, V>
    ),
  4. void replace(
    1. Map<K, V>
    ),
  5. void remove(
    1. K key
    ),
  6. VoidCallback reset,
)

Implementation

const MapAction(
  this._map,
  this.add,
  this.addAll,
  this.replace,
  this.remove,
  this.reset,
);