uncacheFileInfo method

Future<bool> uncacheFileInfo(
  1. String id
)

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;
  }
}