CacheControl constructor

const CacheControl({
  1. int? maxAge,
  2. int? maxStale,
  3. int? minFresh,
  4. bool noCache = false,
  5. bool noStore = false,
  6. bool noTransform = false,
  7. bool onlyIfCached = false,
  8. List<String> other = const [],
})

Implementation

const CacheControl({
  this.maxAge,
  this.maxStale,
  this.minFresh,
  this.noCache = false,
  this.noStore = false,
  this.noTransform = false,
  this.onlyIfCached = false,
  this.other = const [],
});