FormStackForm constructor

FormStackForm(
  1. LinkedList<FormStep> steps, {
  2. Identifier? id,
  3. required String fromInstanceName,
  4. dynamic onUpdate(
    1. FormStep
    )?,
  5. dynamic onRenderFormSatackForm(
    1. FormStackForm
    )?,
  6. String? backgroundAnimationFile,
  7. dynamic onValidtionError(
    1. String
    )?,
  8. VoidCallback? onSystemNagiationBackClick,
  9. Color primaryColor = Colors.black,
  10. required MapKey mapKey,
  11. bool preventSystemBackNavigation = false,
  12. Alignment? backgroundAlignment,
  13. required LocationWrapper initialLocation,
})

Implementation

FormStackForm(this.steps,
    {this.id,
    required this.fromInstanceName,
    this.onUpdate,
    this.onRenderFormSatackForm,
    this.backgroundAnimationFile,
    this.onValidtionError,
    this.onSystemNagiationBackClick,
    this.primaryColor = Colors.black,
    required this.mapKey,
    this.preventSystemBackNavigation = false,
    this.backgroundAlignment,
    required this.initialLocation}) {
  id ??= FormIdentifier();
}