removeKey method

void removeKey(
  1. String key
)

Removes the value associated with the given key from storage.

Implementation

void removeKey(String key) {
  _storage.remove(key);
}