NiceWizard constructor

const NiceWizard({
  1. Key? key,
  2. required List<NiceWizardStep> steps,
  3. int initialStep = 0,
  4. VoidCallback? onComplete,
  5. ValueChanged<int>? onStepChanged,
  6. String nextLabel = 'Dalej',
  7. String prevLabel = 'Wstecz',
  8. String completeLabel = 'Zakończ',
})

Implementation

const NiceWizard({
  super.key,
  required this.steps,
  this.initialStep = 0,
  this.onComplete,
  this.onStepChanged,
  this.nextLabel = 'Dalej',
  this.prevLabel = 'Wstecz',
  this.completeLabel = 'Zakończ',
});