FlightRow constructor

const FlightRow({
  1. Key? key,
  2. required String departureAirport,
  3. required String arrivalAirport,
  4. int numberOfStops = 0,
  5. bool showFullWidth = false,
  6. bool isRoundTrip = false,
})

Implementation

const FlightRow({
  super.key,
  required this.departureAirport,
  required this.arrivalAirport,
  this.numberOfStops = 0,
  this.showFullWidth = false,
  this.isRoundTrip = false,
});