Airports constructor

Airports({
  1. String? id,
  2. String? ident,
  3. String? type,
  4. String? name,
  5. double? latitudeDeg,
  6. double? longitudeDeg,
  7. int? elevationFt,
  8. String? continent,
  9. String? isoCountry,
  10. String? isoRegion,
  11. String? municipality,
  12. String? gpsCode,
  13. String? iataCode,
  14. String? localCode,
})

Implementation

Airports(
    {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});