FlightDetails constructor

const FlightDetails({
  1. Key? key,
  2. required BookingHistory history,
})

Implementation

const FlightDetails({
  super.key,
  required this.history
});