BookingsCard constructor
- Key? key,
- required void onDetailsClicked(),
- required BookingHistory history,
- required int index,
- EdgeInsets? padding,
- bool isExpanded = false,
- bool changeTrailingButton = false,
- 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,
});