AttributesSearchModel constructor

AttributesSearchModel({
  1. String? id,
  2. String? dataType,
  3. String? referenceId,
  4. String? tenantId,
  5. String? code,
  6. String? isActive,
  7. bool? required,
  8. String? regex,
  9. int? order,
  10. String? boundaryCode,
  11. bool? isDeleted = false,
})

Implementation

AttributesSearchModel({
  this.id,
  this.dataType,
  this.referenceId,
  this.tenantId,
  this.code,
  this.isActive,
  this.required,
  this.regex,
  this.order,
  super.boundaryCode,
  super.isDeleted,
}):  super();