CacheControl constructor

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

Implementation

CacheControl({
  this.maxAge = -1,
  this.privacy,
  this.maxStale = -1,
  this.minFresh = -1,
  this.mustRevalidate = false,
  this.noCache = false,
  this.noStore = false,
  this.other = const [],
});