PlexWizard constructor
const
PlexWizard({
- Key? key,
- required List<
PlexWizardStep> steps, - VoidCallback? onComplete,
- ValueChanged<
int> ? onStepChanged, - PlexWizardAxis axis = PlexWizardAxis.horizontal,
- 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');