HeaderRow constructor

const HeaderRow({
  1. Key? key,
  2. required BookingHistory history,
  3. required void onTap(),
  4. required String icon,
  5. bool changeTrailingButton = false,
})

Implementation

const HeaderRow({
  super.key,
  required this.history,
  required this.onTap,
  required this.icon,
  this.changeTrailingButton = false,
});