DynamicStepperForm constructor

const DynamicStepperForm({
  1. Key? key,
  2. required List<DynamicStep> steps,
  3. DynamicFormController? controller,
  4. DynamicFormTheme? theme,
  5. void onSubmit(
    1. Map<String, dynamic> values
    )?,
  6. StepperType type = StepperType.vertical,
})

Creates a new DynamicStepperForm instance.

Implementation

const DynamicStepperForm({
  super.key,
  required this.steps,
  this.controller,
  this.theme,
  this.onSubmit,
  this.type = StepperType.vertical,
});