apiCache property

IwsCache get apiCache

Specialized cache for API responses with longer TTL

Implementation

IwsCache get apiCache {
  _apiCache ??= IwsPersistentCache(
    maxSize: 200,
    evictionPolicy: EvictionPolicy.lru,
    cleanupInterval: Duration(hours: 6),
  );
  return _apiCache!;
}