copyWith method
Implementation
DevToolsSettings copyWith({
bool? enabled,
int? sampleIntervalMs,
int? timelineLimit,
int? batchLimit,
int? performanceLimit,
int? valuePreviewLength,
}) {
return DevToolsSettings(
enabled: enabled ?? this.enabled,
sampleIntervalMs: sampleIntervalMs ?? this.sampleIntervalMs,
timelineLimit: timelineLimit ?? this.timelineLimit,
batchLimit: batchLimit ?? this.batchLimit,
performanceLimit: performanceLimit ?? this.performanceLimit,
valuePreviewLength: valuePreviewLength ?? this.valuePreviewLength,
);
}