Airport constructor

Airport({
  1. String? id,
  2. String? iataCode,
  3. String? faaCode,
  4. String? icaoCode,
  5. String? name,
  6. String? alternates,
  7. Market? market,
  8. String? city,
  9. String? region,
  10. String? latitude,
  11. String? longitude,
  12. int? altitude,
  13. int? sequence,
})

Implementation

Airport({
  this.id,
  this.iataCode,
  this.faaCode,
  this.icaoCode,
  this.name,
  this.alternates,
  this.market,
  this.city,
  this.region,
  this.latitude,
  this.longitude,
  this.altitude,
  this.sequence,
});