saveHiveImage static method
Save the image in the hive storage
Implementation
@visibleForTesting
static HiveCacheImage saveHiveImage(String url, Uint8List image) {
String id = _stringToBase64.encode(url);
HiveCacheImage cacheImage = HiveCacheImage(
url: url,
binaryImage: image,
);
_cacheBox.put(id, cacheImage);
return cacheImage;
}