add method

void add(
  1. V value
)

Adds a value to the map. The key is generated using the keyFunc function.

Implementation

void add(V value) => _items.add(value);