FlightTimeline2 constructor

const FlightTimeline2({
  1. Key? key,
  2. required List<FlightModel> flights,
  3. required bool isNonDiscounted,
  4. bool isRoundTrip = false,
  5. bool rightBorder = false,
})

Implementation

const FlightTimeline2({
  super.key,
  required this.flights,
  required this.isNonDiscounted,
  this.isRoundTrip = false,
  this.rightBorder = false,
});