NameModel constructor

NameModel({
  1. NameAdditionalFields? additionalFields,
  2. String? id,
  3. String? individualClientReferenceId,
  4. String? givenName,
  5. String? familyName,
  6. String? otherNames,
  7. bool? nonRecoverableError = false,
  8. String? tenantId,
  9. int? rowVersion,
  10. AuditDetails? auditDetails,
  11. ClientAuditDetails? clientAuditDetails,
  12. bool? isDeleted = false,
})

Implementation

NameModel({
  this.additionalFields,
  this.id,
  this.individualClientReferenceId,
  this.givenName,
  this.familyName,
  this.otherNames,
  this.nonRecoverableError = false,
  this.tenantId,
  this.rowVersion,
  super.auditDetails,super.clientAuditDetails,
  super.isDeleted = false,
}): super();