ModulaStepper constructor

const ModulaStepper({
  1. required int currentStep,
  2. required List<ModulaStep> steps,
  3. Key? key,
  4. Axis direction = Axis.vertical,
  5. ValueChanged<int>? onStepTapped,
  6. bool showProgress = false,
})

Implementation

const ModulaStepper({
  required this.currentStep,
  required this.steps,
  super.key,
  this.direction = Axis.vertical,
  this.onStepTapped,
  this.showProgress = false,
});