Clears all entries from the cache.
@override Future<void> reset() async { final dir = Directory(_cacheDir); if (dir.existsSync()) { await dir.delete(recursive: true); } }