addEntry method

void addEntry(
  1. String key,
  2. T value
)

Implementation

void addEntry(String key, T value) {
  _map[key] = value;
}