remove method

Future<bool> remove(
  1. K key
)

Removes a value from the cache.

Implementation

Future<bool> remove(K key) async {
  return await _storage.remove(key);
}