removeAt method

void removeAt(
  1. int index
)

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();
}