NiceCheckoutStepper constructor

const NiceCheckoutStepper({
  1. Key? key,
  2. required List<NiceCheckoutStep> steps,
  3. required int currentStep,
  4. void onStepTap(
    1. int step
    )?,
})

Implementation

const NiceCheckoutStepper({
  super.key,
  required this.steps,
  required this.currentStep,
  this.onStepTap,
});