TripCard constructor

const TripCard({
  1. Key? key,
  2. required bool isDeparture,
  3. required BookingHistory history,
  4. required bool isExpanded,
  5. bool hideTimeline = false,
  6. bool isInColumn = false,
  7. bool removeTopBorder = false,
})

Implementation

const TripCard({
  super.key,
  required this.isDeparture,
  required this.history,
  required this.isExpanded,
  this.hideTimeline = false,
  this.isInColumn = false,
  this.removeTopBorder = false,
});