remove method

void remove(
  1. String key
)

Removes the mapping for the given key (if any)

Implementation

void remove(String key) {
  _internalMap.remove(key);
}