VxTimeline constructor

const VxTimeline({
  1. Key? key,
  2. required List<VxTimelineModel> timelineList,
  3. Color? lineColor,
  4. Color? backgroundColor,
  5. Color? trailingColor,
  6. Color? headingColor,
  7. Color? descriptionColor,
  8. ValueSetter<VxTimelineModel>? onItemTap,
  9. Duration? animationDuration,
  10. bool showTrailing = false,
  11. Widget? customTrailing,
})

Implementation

const VxTimeline(
    {super.key,
    required this.timelineList,
    this.lineColor,
    this.backgroundColor,
    this.trailingColor,
    this.headingColor,
    this.descriptionColor,
    this.onItemTap,
    this.animationDuration,
    this.showTrailing = false,
    this.customTrailing});