deleteCache static method
Implementation
static Future<void> deleteCache() async {
final dir = await getApplicationCacheDirectory();
await dir.delete(recursive: true);
}
static Future<void> deleteCache() async {
final dir = await getApplicationCacheDirectory();
await dir.delete(recursive: true);
}