NiceTimeline constructor

const NiceTimeline({
  1. Key? key,
  2. required List<NiceTimelineItem> items,
  3. Color? lineColor,
})

Implementation

const NiceTimeline({
  super.key,
  required this.items,
  this.lineColor,
});