VWizard constructor
const
VWizard({
- Key? key,
- required int currentStep,
- required List<
bool> completedSteps, - VoidCallback? onNext,
- VoidCallback? onPrevious,
- VoidCallback? onDismiss,
- required int totalSteps,
- VWizardStyle? style,
- VExt? vExt,
- Widget? errorIcon,
- bool hasError = false,
Implementation
const VWizard({
super.key,
required this.currentStep,
required this.completedSteps,
this.onNext,
this.onPrevious,
this.onDismiss,
required this.totalSteps,
this.style,
this.vExt,
this.errorIcon,
this.hasError = false,
});