copyWith method
Implementation
CompensationdelaySettings copyWith({
bool? enabled,
int? cm,
double? dry,
int? m,
int? mm,
int? temp,
double? wet,
}) =>
CompensationdelaySettings(
enabled: enabled ?? this.enabled,
cm: cm ?? this.cm,
dry: dry ?? this.dry,
m: m ?? this.m,
mm: mm ?? this.mm,
temp: temp ?? this.temp,
wet: wet ?? this.wet,
);