TimeLineWidget constructor

const TimeLineWidget({
  1. Key? key,
  2. required List<TimelineItem> dataTimeline,
  3. bool isHorizontal = false,
  4. bool indicatorIndex = false,
  5. double indicatorSize = 40.0,
  6. bool hasTitle = false,
  7. bool iconIndicator = true,
})

Implementation

const TimeLineWidget({
  Key? key,
  required this.dataTimeline,
  this.isHorizontal = false,
  this.indicatorIndex = false,
  this.indicatorSize = 40.0,
  this.hasTitle = false,
  this.iconIndicator = true,
}) : super(key: key);