delete method

  1. @override
Future<void> delete(
  1. String key
)
override

Removes the entry associated with the key from the cache.

Does nothing if the key is not found.

Implementation

@override
Future<void> delete(String key) {
  throw UnimplementedError(
    'Cache is not available in your current platform.',
  );
}