persistentCache property
IwsCache
get
persistentCache
Persistent cache for data that should survive app restarts
Implementation
IwsCache get persistentCache {
_persistentCache ??= IwsPersistentCache(
maxSize: 500,
evictionPolicy: EvictionPolicy.lru,
cleanupInterval: Duration(hours: 1),
);
return _persistentCache!;
}