StepPageIndicator constructor
StepPageIndicator({})
Implementation
StepPageIndicator({
Key? key,
required this.currentPageNotifier,
required this.itemCount,
this.onPageSelected,
this.size = _defaultSize,
this.stepSpacing = _defaultSpacing,
Color? stepColor,
this.previousStep,
this.selectedStep,
this.nextStep,
}) : this.stepColor = stepColor ?? _defaultStepColor,
assert(size >= 0, "size must be a positive number"),
super(key: key);