Stepper constructor
const
Stepper({
- Key? key,
- required StepperController controller,
- required List<
Step> steps, - Axis direction = Axis.horizontal,
- StepSize size = StepSize.medium,
- 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,
});