HorizontalSteps constructor

const HorizontalSteps({
  1. Key? key,
  2. required List<PhoenixStep> steps,
  3. StepsController? controller,
  4. Widget? doingIcon,
  5. Widget? completedIcon,
})

Implementation

const HorizontalSteps({
  Key? key,
  required this.steps,
  this.controller,
  this.doingIcon,
  this.completedIcon,
})  : assert(steps.length < 6),
      super(key: key);