uncacheFileInfo method
Implementation
Future<bool> uncacheFileInfo(String id) async {
try {
_cachedFileInfos.remove(id);
await KV.remove(id);
return true;
} catch (e) {
if (kDebugMode) {
print(e);
}
return false;
}
}