PassengerDetailsSection constructor

const PassengerDetailsSection({
  1. Key? key,
  2. required PaymentController controller,
  3. required BuildContext context,
  4. void nextTabScroll()?,
  5. void previousTabScroll()?,
  6. bool hideOption = false,
})

Implementation

const PassengerDetailsSection({
  super.key,
  required this.controller,
  required this.context,
  this.nextTabScroll,
  this.previousTabScroll,
  this.hideOption = false,
});