clear method

Future<void> clear(
  1. String key
)

Removes a specific item from the cache.

Implementation

Future<void> clear(String key) async {
  _store.remove(key);
}