AttributesModel constructor

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

Implementation

AttributesModel({
  this.additionalDetails,
  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();