remove abstract method

Future<void> remove({
  1. required String key,
})

Removes a specific item from the cache.

This deletes the physical file from the disk and removes the entry from the internal memory tracking (LRU/FIFO list).

Implementation

Future<void> remove({required String key});