copyWith method

FlyTrackingToken copyWith({
  1. double? tighter,
  2. double? tight,
  3. double? normal,
  4. double? wide,
  5. double? wider,
  6. double? widest,
  7. Map<String, double>? extras,
})

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