Field constructor

Field({
  1. String? fieldStyle,
  2. required String name,
  3. String? dataType,
  4. String? label,
  5. String? placeholder,
  6. String? formatter,
  7. String? fieldType,
  8. bool? hidden,
  9. dynamic defaultValue,
  10. ConditionalOn? disabledOn,
  11. bool? disabled,
  12. List<String>? dependentOn,
  13. Validation? validation,
  14. List<AutoFill>? autoFill,
  15. List<Option>? options,
  16. Source? source,
  17. ConditionalOn? conditionalOn,
})

Implementation

Field({
  this.fieldStyle,
  required this.name,
  this.dataType,
  this.label,
  this.placeholder,
  this.formatter,
  this.fieldType,
  this.hidden,
  this.defaultValue,
  this.disabledOn,
  this.disabled,
  this.dependentOn,
  this.validation,
  this.autoFill,
  this.options,
  this.source,
  this.conditionalOn,
});