copyWith method

CompensationdelaySettings copyWith({
  1. bool? enabled,
  2. int? cm,
  3. double? dry,
  4. int? m,
  5. int? mm,
  6. int? temp,
  7. double? wet,
})

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,
    );