ProgressTimeline constructor

const ProgressTimeline({
  1. Key? key,
  2. required int currentIndex,
  3. required int count,
  4. double? dotSize,
})

Implementation

const ProgressTimeline({
  super.key,
  required this.currentIndex,
  required this.count,
  this.dotSize,
});