BookingsCard constructor

const BookingsCard({
  1. Key? key,
  2. required void onDetailsClicked(),
  3. required BookingHistory history,
  4. required int index,
  5. EdgeInsets? padding,
  6. bool isExpanded = false,
  7. bool changeTrailingButton = false,
  8. bool isRateRequest = false,
})

Implementation

const BookingsCard({
  super.key,
  required this.onDetailsClicked,
  required this.history,
  required this.index,
  this.padding,
  this.isExpanded = false,
  this.changeTrailingButton = false,
  this.isRateRequest = false,
});