CacheOption constructor

const CacheOption({
  1. CachePolicy policy = CachePolicy.request,
  2. Duration? maxStale,
  3. CachePriority priority = CachePriority.normal,
  4. CacheCipher? cipher,
})

Implementation

const CacheOption({
  this.policy = CachePolicy.request,
  this.maxStale,
  this.priority = CachePriority.normal,
  this.cipher,
});