ISpectTraceConfig constructor

const ISpectTraceConfig({
  1. double? sampleRate,
  2. double errorSampleRate = 1.0,
  3. bool redact = true,
  4. Set<String> redactKeys = defaultSensitiveKeys,
  5. int maxValueLength = 500,
  6. bool attachStackOnError = false,
  7. Duration? slowThreshold,
})

Implementation

const ISpectTraceConfig({
  this.sampleRate,
  this.errorSampleRate = 1.0,
  this.redact = true,
  this.redactKeys = defaultSensitiveKeys,
  this.maxValueLength = 500,
  this.attachStackOnError = false,
  this.slowThreshold,
});