HorizontalSteps constructor
const
HorizontalSteps({
- Key? key,
- required List<
PhoenixStep> steps, - StepsController? controller,
- Widget? doingIcon,
- Widget? completedIcon,
Implementation
const HorizontalSteps({
Key? key,
required this.steps,
this.controller,
this.doingIcon,
this.completedIcon,
}) : assert(steps.length < 6),
super(key: key);