deleteHiveImage static method
Delete the image form the hive storage
Implementation
@visibleForTesting
static Future<void> deleteHiveImage(String url) {
String id = _stringToBase64.encode(url);
return _cacheBox.delete(id);
}
Delete the image form the hive storage
@visibleForTesting
static Future<void> deleteHiveImage(String url) {
String id = _stringToBase64.encode(url);
return _cacheBox.delete(id);
}