storageRemove method

Future<void> storageRemove(
  1. String key
)

Removes a file from the disk cache by key.

Ensures the storage cache is initialized before access.

Implementation

Future<void> storageRemove(String key) async {
  await _storageInit();
  await _storageCache.remove(key);
}