removeAt method
Removes the key-value pair at the specified index.
Implementation
void removeAt(int index) {
_indizes.remove(keys[index]);
values.removeAt(index);
keys.removeAt(index);
reindex();
}
Removes the key-value pair at the specified index.
void removeAt(int index) {
_indizes.remove(keys[index]);
values.removeAt(index);
keys.removeAt(index);
reindex();
}