FormDefinition constructor

FormDefinition({
  1. String? title,
  2. List<Section>? sections,
  3. String? sectionStyle,
  4. String? formStyle,
  5. List<Field>? fields,
  6. bool? repeatable,
  7. int? startWithIndex,
  8. String? formValidation,
  9. RequestAction? requestAction,
  10. bool? includeIndexCount,
  11. bool? mandatoryFirstIndex,
  12. int? maxIndex,
})

Implementation

FormDefinition({
  this.title,
  this.sections,
  this.sectionStyle,
  this.formStyle,
  this.fields,
  this.repeatable,
  this.startWithIndex,
  this.formValidation,
  this.requestAction,
  this.includeIndexCount,
  this.mandatoryFirstIndex,
  this.maxIndex,
});