CustomField constructor

CustomField({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. CustomFieldStatus? status,
  5. String? term,
  6. String? label,
  7. String? description,
  8. CustomFieldDataType? dataType,
  9. CustomFieldRegistration? registration,
  10. bool? requiredForImport,
  11. bool? requiredForCrewing,
  12. bool? internal,
  13. bool? allowEdit,
  14. bool? requireVerification,
  15. String? choices,
  16. String? widgetConfig,
  17. int? step,
  18. int? section,
  19. List<int>? positions,
})

Implementation

CustomField({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.status,
  this.term,
  this.label,
  this.description,
  this.dataType,
  this.registration,
  this.requiredForImport,
  this.requiredForCrewing,
  this.internal,
  this.allowEdit,
  this.requireVerification,
  this.choices,
  this.widgetConfig,
  this.step,
  this.section,
  this.positions,
});