NiceFormStepper constructor

const NiceFormStepper({
  1. Key? key,
  2. required List<NiceFormStep> steps,
  3. int initialStep = 0,
  4. void onComplete(
    1. Map<String, dynamic> data
    )?,
  5. void onCancel()?,
  6. bool validateOnNext = true,
  7. bool showSummary = true,
})

Implementation

const NiceFormStepper({
  super.key,
  required this.steps,
  this.initialStep = 0,
  this.onComplete,
  this.onCancel,
  this.validateOnNext = true,
  this.showSummary = true,
});