toVelocityFromMach method

Velocity toVelocityFromMach([
  1. Atmo? atmo
])

Implementation

Velocity toVelocityFromMach([Atmo? atmo]) {
  final c = (atmo ?? Atmo.icao()).mach.in_(Unit.mps);
  return Velocity.mps(this * c);
}