clearAll method
Clears the whole cache.
Implementation
Future<void> clearAll() async {
await Future.wait(loadedFiles.keys.map(_clearFile));
loadedFiles.clear();
}
Clears the whole cache.
Future<void> clearAll() async {
await Future.wait(loadedFiles.keys.map(_clearFile));
loadedFiles.clear();
}