StepItem constructor

const StepItem({
  1. Key? key,
  2. required IconData stepIcon,
  3. required bool isCurrent,
  4. required StepData stepData,
  5. required bool isSelected,
  6. double? stepIconsSize,
  7. required bool animate,
  8. required Color stepIconColor,
  9. Function? onSelectedStep,
})

Implementation

const StepItem({
  super.key,
  required this.stepIcon,
  required this.isCurrent,
  required this.stepData,
  required this.isSelected,
  this.stepIconsSize,
  required this.animate,
  required this.stepIconColor,
  this.onSelectedStep,
});