AttributesModel constructor

AttributesModel({
  1. AttributesAdditionalFields? additionalFields,
  2. String? id,
  3. String? dataType,
  4. String? referenceId,
  5. String? tenantId,
  6. String? code,
  7. List<String>? values,
  8. String? isActive,
  9. bool? required,
  10. String? regex,
  11. int? order,
  12. bool? nonRecoverableError = false,
  13. int? rowVersion,
  14. AuditDetails? auditDetails,
  15. ClientAuditDetails? clientAuditDetails,
  16. bool? isDeleted = false,
})

Implementation

AttributesModel({
  this.additionalFields,
  this.id,
  this.dataType,
  this.referenceId,
  this.tenantId,
  this.code,
  this.values,
  this.isActive,
  this.required,
  this.regex,
  this.order,
  this.nonRecoverableError = false,
  this.rowVersion,
  super.auditDetails,super.clientAuditDetails,
  super.isDeleted = false,
}): super();