PlexWizard constructor

const PlexWizard({
  1. Key? key,
  2. required List<PlexWizardStep> steps,
  3. VoidCallback? onComplete,
  4. ValueChanged<int>? onStepChanged,
  5. PlexWizardAxis axis = PlexWizardAxis.horizontal,
  6. bool allowStepJump = false,
})

Implementation

const PlexWizard({
  super.key,
  required this.steps,
  this.onComplete,
  this.onStepChanged,
  this.axis = PlexWizardAxis.horizontal,
  this.allowStepJump = false,
}) : assert(steps.length > 0, 'PlexWizard requires at least one step');