Steppers constructor

Steppers({
  1. Key? key,
  2. required List<StepperData> labels,
  3. required int currentStep,
  4. StepperStyle? stepBarStyle,
  5. StepperDirection direction = StepperDirection.horizontal,
})

Implementation

Steppers({
  Key? key,
  required this.labels,
  required this.currentStep,
  this.stepBarStyle,
  this.direction = StepperDirection.horizontal,
}) : super(key: key);