Steppers constructor
Steppers({
- Key? key,
- required List<
StepperData> labels, - required int currentStep,
- StepperStyle? stepBarStyle,
- StepperDirection direction = StepperDirection.horizontal,
Implementation
Steppers({
Key? key,
required this.labels,
required this.currentStep,
this.stepBarStyle,
this.direction = StepperDirection.horizontal,
}) : super(key: key);