CacheConfiguration constructor

const CacheConfiguration({
  1. CacheSizeOptions sizeOptions = const CacheSizeOptions(),
  2. CacheCryptographyOptions? cryptographyOptions,
  3. DataCacheOptions dataCacheOptions = const DataCacheOptions(),
})

Constructs a CacheConfiguration object.

sizeOptions Options for cache size. ttlMaxDuration Maximum time-to-live duration for cache items. cryptographyOptions Options for cache cryptography.

Implementation

const CacheConfiguration({
  this.sizeOptions = const CacheSizeOptions(),
  this.cryptographyOptions,
  this.dataCacheOptions = const DataCacheOptions(),
});