removeByKey method
Removes the key-value pair with the specified key.
Implementation
void removeByKey(String key) {
int? index = _indizes[key];
if (index != null) removeAt(index);
}
Removes the key-value pair with the specified key.
void removeByKey(String key) {
int? index = _indizes[key];
if (index != null) removeAt(index);
}