clean abstract method

Future<void> clean({
  1. CachePriority priorityOrBelow = CachePriority.high,
  2. bool staleOnly = false,
})

Removes all keys from store. priorityOrBelow flag will remove keys only for the priority or below. staleOnly flag will remove keys only if expired (from maxStale).

By default, all keys will be removed.

Implementation

Future<void> clean({
  CachePriority priorityOrBelow = CachePriority.high,
  bool staleOnly = false,
});