RunwayContract constructor

RunwayContract({
  1. required String name,
  2. required double trueHdg,
  3. required bool isClosed,
  4. required SurfaceType surface,
  5. RunwayContractLength? length,
  6. RunwayContractWidth? width,
  7. RunwayContractLocation? location,
  8. RunwayContractDisplacedThreshold? displacedThreshold,
  9. bool? hasLighting,
})

Returns a new RunwayContract instance.

Implementation

RunwayContract({
  required this.name,
  required this.trueHdg,
  required this.isClosed,
  required this.surface,
  this.length,
  this.width,
  this.location,
  this.displacedThreshold,
  this.hasLighting,
});