configure function

void configure({
  1. bool? enabled,
  2. int? sampleIntervalMs,
  3. int? timelineLimit,
  4. int? batchLimit,
  5. int? performanceLimit,
  6. int? valuePreviewLength,
})

Implementation

void configure({
  bool? enabled,
  int? sampleIntervalMs,
  int? timelineLimit,
  int? batchLimit,
  int? performanceLimit,
  int? valuePreviewLength,
}) {
  _DevTools._instance._configure(
    enabled: enabled,
    sampleIntervalMs: sampleIntervalMs,
    timelineLimit: timelineLimit,
    batchLimit: batchLimit,
    performanceLimit: performanceLimit,
    valuePreviewLength: valuePreviewLength,
  );
}