IdentifierModel constructor

IdentifierModel({
  1. IdentifierAdditionalFields? additionalFields,
  2. String? id,
  3. String? identifierType,
  4. String? identifierId,
  5. bool? nonRecoverableError = false,
  6. required String clientReferenceId,
  7. String? tenantId,
  8. int? rowVersion,
  9. AuditDetails? auditDetails,
  10. ClientAuditDetails? clientAuditDetails,
  11. bool? isDeleted = false,
})

Implementation

IdentifierModel({
  this.additionalFields,
  this.id,
  this.identifierType,
  this.identifierId,
  this.nonRecoverableError = false,
  required this.clientReferenceId,
  this.tenantId,
  this.rowVersion,
  super.auditDetails,super.clientAuditDetails,
  super.isDeleted = false,
}): super();