remove method

void remove(
  1. K key
)

Implementation

void remove(K key) {
  _map.remove(key);
}