MethodSetting constructor

MethodSetting({
  1. bool? cacheDataEncrypted,
  2. int? cacheTtlInSeconds,
  3. bool? cachingEnabled,
  4. bool? dataTraceEnabled,
  5. String? loggingLevel,
  6. bool? metricsEnabled,
  7. bool? requireAuthorizationForCacheControl,
  8. int? throttlingBurstLimit,
  9. double? throttlingRateLimit,
  10. UnauthorizedCacheControlHeaderStrategy? unauthorizedCacheControlHeaderStrategy,
})

Implementation

MethodSetting({
  this.cacheDataEncrypted,
  this.cacheTtlInSeconds,
  this.cachingEnabled,
  this.dataTraceEnabled,
  this.loggingLevel,
  this.metricsEnabled,
  this.requireAuthorizationForCacheControl,
  this.throttlingBurstLimit,
  this.throttlingRateLimit,
  this.unauthorizedCacheControlHeaderStrategy,
});