remove method

void remove(
  1. T key
)

Removes the value of key

Implementation

void remove(T key) {
  _storage.remove(key);
}