VWizard constructor

const VWizard({
  1. Key? key,
  2. required int currentStep,
  3. required List<bool> completedSteps,
  4. VoidCallback? onNext,
  5. VoidCallback? onPrevious,
  6. VoidCallback? onDismiss,
  7. required int totalSteps,
  8. VWizardStyle? style,
  9. VExt? vExt,
  10. Widget? errorIcon,
  11. 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,
});