copyWith method

SimulationAutoWithOverSpeed copyWith({
  1. double? overSpeed,
})

Implementation

SimulationAutoWithOverSpeed copyWith({
  double? overSpeed
}) {
  return SimulationAutoWithOverSpeed(
    overSpeed ?? this.overSpeed
  );
}