UProcessField constructor

UProcessField({
  1. required String label,
  2. required TagFieldType type,
  3. required bool required,
  4. required String key,
  5. String? rejectionReason,
  6. String? text1,
  7. String? value,
  8. UTextFieldConfig? textFieldConfig,
  9. UFileConfig? fileConfig,
  10. UDropDownConfig? dropDownConfig,
  11. List<UOption>? options,
})

Implementation

UProcessField({
  required this.label,
  required this.type,
  required this.required,
  required this.key,
  this.rejectionReason,
  this.text1,
  this.value,
  this.textFieldConfig,
  this.fileConfig,
  this.dropDownConfig,
  this.options,
});