getHiveImage static method

  1. @visibleForTesting
HiveCacheImage? getHiveImage(
  1. String url
)

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