FormFieldProperties constructor

FormFieldProperties({
  1. required String fieldId,
  2. String? pageId,
  3. int? positionOnPage,
  4. DataEntity? defaultValue,
  5. bool disabled = false,
  6. bool hidden = false,
})

Creates a FormFieldProperties Object

Implementation

FormFieldProperties({
  required this.fieldId,
  this.pageId,
  this.positionOnPage,
  this.defaultValue,
  this.disabled = false,
  this.hidden = false,
});