FlightVector constructor Null safety

FlightVector(
  1. {required double distanceFromPointOfInterest,
  2. required double headingRelativeToPointOfInterest,
  3. required double destinationAltitude}
)

Implementation

FlightVector(
    {required this.distanceFromPointOfInterest,
    required this.headingRelativeToPointOfInterest,
    required this.destinationAltitude});