Airport constructor
Airport({ - String? id,
- String? ident,
- String? type,
- String? name,
- double? latitudeDeg,
- double? longitudeDeg,
- int? elevationFt,
- String? continent,
- String? isoCountry,
- String? isoRegion,
- String? municipality,
- String? gpsCode,
- String? iataCode,
- String? localCode,
})
Implementation
Airport({
this.id,
this.ident,
this.type,
this.name,
this.latitudeDeg,
this.longitudeDeg,
this.elevationFt,
this.continent,
this.isoCountry,
this.isoRegion,
this.municipality,
this.gpsCode,
this.iataCode,
this.localCode,
});