updateByKey method
Updates the value associated with the specified key.
Implementation
void updateByKey(String key, V value) {
values[_indizes[key]!] = value;
}
Updates the value associated with the specified key.
void updateByKey(String key, V value) {
values[_indizes[key]!] = value;
}