copyWith method
Create a copy with updated values
Implementation
FlyTrackingToken copyWith({
double? tighter,
double? tight,
double? normal,
double? wide,
double? wider,
double? widest,
Map<String, double>? extras,
}) {
return FlyTrackingToken(
tighter: tighter ?? this.tighter,
tight: tight ?? this.tight,
normal: normal ?? this.normal,
wide: wide ?? this.wide,
wider: wider ?? this.wider,
widest: widest ?? this.widest,
extras: extras ?? this.extras,
);
}