clear method

void clear()

Clears all key-value pairs from the map.

Implementation

void clear() {
  values = [];
  keys = [];
  _indizes = {};
}