StepperItem constructor

StepperItem({
  1. required GSStepModel step,
  2. required double width,
  3. required StepperStyle style,
  4. required bool isLastStep,
  5. required GSStepperData data,
  6. Key? key,
})

Implementation

StepperItem({
  required this.step,
  required this.width,
  required this.style,
  required this.isLastStep,
  required this.data,
  Key? key,
}) : super(key: key);