PassengerDetails constructor

const PassengerDetails({
  1. Key? key,
  2. required BookingHistory history,
  3. Color? color,
  4. required RxnString expandedPassengerId,
})

Implementation

const PassengerDetails({
  super.key,
  required this.history,
  this.color,
  required this.expandedPassengerId,
});