copyWithWrapped method
Implementation
EntityWatchlistSearchTerms copyWithWrapped(
{Wrapped<String>? entityWatchlistProgramId,
Wrapped<String>? legalName,
Wrapped<String?>? documentNumber,
Wrapped<String?>? emailAddress,
Wrapped<String?>? country,
Wrapped<String?>? phoneNumber,
Wrapped<String?>? url}) {
return EntityWatchlistSearchTerms(
entityWatchlistProgramId: (entityWatchlistProgramId != null
? entityWatchlistProgramId.value
: this.entityWatchlistProgramId),
legalName: (legalName != null ? legalName.value : this.legalName),
documentNumber: (documentNumber != null
? documentNumber.value
: this.documentNumber),
emailAddress:
(emailAddress != null ? emailAddress.value : this.emailAddress),
country: (country != null ? country.value : this.country),
phoneNumber:
(phoneNumber != null ? phoneNumber.value : this.phoneNumber),
url: (url != null ? url.value : this.url));
}