TraceConfig constructor

TraceConfig({
  1. TraceConfigRecordMode? recordMode,
  2. num? traceBufferSizeInKb,
  3. bool? enableSampling,
  4. bool? enableSystrace,
  5. bool? enableArgumentFilter,
  6. List<String>? includedCategories,
  7. List<String>? excludedCategories,
  8. List<String>? syntheticDelays,
  9. MemoryDumpConfig? memoryDumpConfig,
})

Implementation

TraceConfig(
    {this.recordMode,
    this.traceBufferSizeInKb,
    this.enableSampling,
    this.enableSystrace,
    this.enableArgumentFilter,
    this.includedCategories,
    this.excludedCategories,
    this.syntheticDelays,
    this.memoryDumpConfig});