add method

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

Adds an association from key to value.

Implementation

void add(K key, V value) => lookupValues(key).polymorphicAdd(value);