MyStepper constructor

MyStepper({
  1. required List<MyStep> steps,
  2. int initialStep = 0,
  3. Icon? nextIcon,
  4. Icon? endIcon,
  5. bool? backdisabled,
  6. Color? buttonColor,
  7. required Function onSumbit,
  8. Color? connectorColor,
  9. Color? connectorBackGroundColor,
  10. StepperType? type,
  11. double? thickness,
  12. Icon? inProgressIcon,
  13. Icon? completedIcon,
  14. ScrollController? stepController,
  15. Icon? backIcon,
})

Implementation

MyStepper({
  required this.steps,
  this.initialStep = 0,
  this.nextIcon,
  this.endIcon,
  this.backdisabled,
  this.buttonColor,
  required this.onSumbit,
  this.connectorColor,
  this.connectorBackGroundColor,
  this.type,
  this.thickness,
  this.inProgressIcon,
  this.completedIcon,
  this.stepController,
  this.backIcon,
});