userDataCache property

IwsCache get userDataCache

Specialized cache for user-specific data

Implementation

IwsCache get userDataCache {
  _userDataCache ??= IwsPersistentCache(
    maxSize: 50,
    evictionPolicy: EvictionPolicy.lfu,
    cleanupInterval: Duration(hours: 12),
  );
  return _userDataCache!;
}