RouteSettings constructor

RouteSettings({
  1. bool? dataTraceEnabled,
  2. bool? detailedMetricsEnabled,
  3. LoggingLevel? loggingLevel,
  4. int? throttlingBurstLimit,
  5. double? throttlingRateLimit,
})

Implementation

RouteSettings({
  this.dataTraceEnabled,
  this.detailedMetricsEnabled,
  this.loggingLevel,
  this.throttlingBurstLimit,
  this.throttlingRateLimit,
});