getHiveImage static method
Get the image form the hive storage
Implementation
@visibleForTesting
static HiveCacheImage? getHiveImage(String url) {
String id = _stringToBase64.encode(url);
if (!_cacheBox.containsKey(id)) return null;
return _cacheBox.get(id);
}