imageCache property

ImageCache imageCache

The ImageCache which this is stored in it.

Implementation

ImageCache get imageCache {
  if (imageCacheName != null) {
    return imageCaches.putIfAbsent(imageCacheName!, () => ImageCache());
  } else {
    return PaintingBinding.instance.imageCache;
  }
}