updateByKey method

void updateByKey(
  1. String key,
  2. V value
)

Updates the value associated with the specified key.

Implementation

void updateByKey(String key, V value) {
  values[_indizes[key]!] = value;
}