RunwayContract constructor
RunwayContract({
- required String name,
- required double trueHdg,
- required bool isClosed,
- required SurfaceType surface,
- RunwayContractLength? length,
- RunwayContractWidth? width,
- RunwayContractLocation? location,
- RunwayContractDisplacedThreshold? displacedThreshold,
- 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,
});