DynamicFormProps constructor

DynamicFormProps({
  1. required String componentName,
  2. required FormDefinition formJson,
  3. dynamic existingObject,
  4. bool includeSubmit = false,
  5. dynamic onSubmitSuccess(
    1. dynamic
    )?,
})

Implementation

DynamicFormProps({
  required this.componentName,
  required this.formJson,
  this.existingObject,
  this.includeSubmit = false,
  this.onSubmitSuccess,
});