ExpandedSection constructor

const ExpandedSection({
  1. Key? key,
  2. required BookingHistory history,
  3. required int index,
  4. bool isRateRequest = false,
})

Implementation

const ExpandedSection({
  super.key,
  required this.history,
  required this.index,
  this.isRateRequest = false,
});