WizardRenderer constructor
const
WizardRenderer({
- Key? key,
- required WizardConfig wizardConfig,
- Map<
String, dynamic> ? initialData, - OnWizardPageChanged? onPageChanged,
- required OnWizardSubmit onSubmit,
- bool showProgress = true,
Implementation
const WizardRenderer({
Key? key,
required this.wizardConfig,
this.initialData,
this.onPageChanged,
required this.onSubmit,
this.showProgress = true,
this.allowPreviousNavigation = true,
}) : super(key: key);