evict method

Future<bool> evict({
  1. bool disk = false,
})

Implementation

Future<bool> evict({bool disk = false}) async {
  return disk ? await removeFromCache(url) : false;
}