delete method
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.',
);
}