delete method

  1. @override
void delete(
  1. String key
)
override

Deletes a cache entry by its key.

Does nothing if the key doesn't exist.

Implementation

@override
void delete(String key) {
  _storageBox.delete(key);
}