deleteHiveImage static method

  1. @visibleForTesting
Future<void> deleteHiveImage(
  1. String url
)

Delete the image form the hive storage

Implementation

@visibleForTesting
static Future<void> deleteHiveImage(String url) {
  String id = _stringToBase64.encode(url);
  return _cacheBox.delete(id);
}