clear method
void
clear()
Clears all key-value pairs from the map.
Implementation
void clear() {
values = [];
keys = [];
_indizes = {};
}
Clears all key-value pairs from the map.
void clear() {
values = [];
keys = [];
_indizes = {};
}