NZSteps constructor

const NZSteps({
  1. Key? key,
  2. required List<NZStep> steps,
  3. int current = 0,
  4. Axis direction = Axis.horizontal,
  5. Color? color,
})

Implementation

const NZSteps({
  super.key,
  required this.steps,
  this.current = 0,
  this.direction = Axis.horizontal,
  this.color,
});