copyWithFlag method

TrajectoryData copyWithFlag(
  1. int flag
)

Implementation

TrajectoryData copyWithFlag(int flag) => TrajectoryData(
  time: time,
  distance: distance,
  velocity: velocity,
  mach: mach,
  height: height,
  slantHeight: slantHeight,
  dropAngle: dropAngle,
  windage: windage,
  windageAngle: windageAngle,
  slantDistance: slantDistance,
  angle: angle,
  densityRatio: densityRatio,
  drag: drag,
  energy: energy,
  ogw: ogw,
  flag: flag,
);