Stepper constructor

const Stepper({
  1. Key? key,
  2. required StepperController controller,
  3. required List<Step> steps,
  4. Axis direction = Axis.horizontal,
  5. StepSize size = StepSize.medium,
  6. StepVariant variant = StepVariant.circle,
})

Implementation

const Stepper({
  super.key,
  required this.controller,
  required this.steps,
  this.direction = Axis.horizontal,
  this.size = StepSize.medium,
  this.variant = StepVariant.circle,
});