CacheSettings constructor

CacheSettings({
  1. String? allowedHTTPMethods,
  2. String? cachedHTTPMethods,
  3. int? defaultTTL,
  4. CookieObject? forwardedCookies,
  5. HeaderObject? forwardedHeaders,
  6. QueryStringObject? forwardedQueryStrings,
  7. int? maximumTTL,
  8. int? minimumTTL,
})

Implementation

CacheSettings({
  this.allowedHTTPMethods,
  this.cachedHTTPMethods,
  this.defaultTTL,
  this.forwardedCookies,
  this.forwardedHeaders,
  this.forwardedQueryStrings,
  this.maximumTTL,
  this.minimumTTL,
});