imageCache property
Cache?
get
imageCache
The most recent information about the image cache for the process. Only available when receiving the object as part of a callback from onUpdated or onUpdatedWithMemory.
Implementation
Cache? get imageCache => _wrapped.imageCache?.let(Cache.fromJS);
set
imageCache
(Cache? v)
Implementation
set imageCache(Cache? v) {
_wrapped.imageCache = v?.toJS;
}