add method

void add(
  1. K key,
  2. V value
)

Adds a key-value pair to the map.

Implementation

void add(K key, V value) {
  _indizes[key] = values.length;
  values.add(value);
  keys.add(key);
}