saveHiveImage static method

  1. @visibleForTesting
HiveCacheImage saveHiveImage(
  1. String url,
  2. Uint8List image
)

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;
}