CacheConfig constructor

CacheConfig({
  1. Duration? expirationTime,
  2. bool forceRefresh = false,
  3. bool useCacheWhenOffline = true,
  4. int priority = 5,
})

Implementation

CacheConfig({
  this.expirationTime,
  this.forceRefresh = false,
  this.useCacheWhenOffline = true,
  this.priority = 5,
});