TimelineItem constructor

TimelineItem({
  1. required Color lineColor,
  2. required Color backgroundColor,
  3. required TimelineEntity entity,
  4. bool firstElement = false,
  5. bool lastElement = false,
  6. Animation<double>? controller,
  7. Color? headingColor,
  8. Color? descriptionColor,
})

Implementation

TimelineItem(
    {required this.lineColor,
    required this.backgroundColor,
    required this.entity,
    this.firstElement = false,
    this.lastElement = false,
    this.controller,
    this.headingColor,
    this.descriptionColor});