copyWith method
Returns a copy of this AdeclipSettings with the given fields replaced.
Implementation
AdeclipSettings copyWith({
bool? enabled,
double? a,
double? arorder,
int? hsize,
AdeclipM? m,
AdeclipM? method,
int? n,
double? o,
double? overlap,
double? t,
double? threshold,
double? w,
double? window,
}) =>
AdeclipSettings(
enabled: enabled ?? this.enabled,
a: a ?? this.a,
arorder: arorder ?? this.arorder,
hsize: hsize ?? this.hsize,
m: m ?? this.m,
method: method ?? this.method,
n: n ?? this.n,
o: o ?? this.o,
overlap: overlap ?? this.overlap,
t: t ?? this.t,
threshold: threshold ?? this.threshold,
w: w ?? this.w,
window: window ?? this.window,
);