AtomixStepper constructor

const AtomixStepper({
  1. Key? key,
  2. required List<AtomixStep> steps,
  3. int currentStep = 0,
  4. ValueChanged<int>? onStepTapped,
  5. Axis direction = Axis.horizontal,
})

Implementation

const AtomixStepper({
  super.key,
  required this.steps,
  this.currentStep = 0,
  this.onStepTapped,
  this.direction = Axis.horizontal,
});