getCache method

Uint8List? getCache(
  1. ImageReference img
)

Implementation

Uint8List? getCache(ImageReference img) {
  return cache.firstWhere((e) => e == img).bytes;
}