delete method

Future<void> delete(
  1. String key
)

Removes the cache entry for the given key.

Delegates to the underlying platform-specific Cache implementation.

Implementation

Future<void> delete(String key) => _cache.delete(key);