configure function
void
configure({})
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,
);
}