copyWith method
Implementation
UpdateIndividualScreeningRequestSearchTerms copyWith(
{String? watchlistProgramId,
String? legalName,
String? dateOfBirth,
String? documentNumber,
String? country}) {
return UpdateIndividualScreeningRequestSearchTerms(
watchlistProgramId: watchlistProgramId ?? this.watchlistProgramId,
legalName: legalName ?? this.legalName,
dateOfBirth: dateOfBirth ?? this.dateOfBirth,
documentNumber: documentNumber ?? this.documentNumber,
country: country ?? this.country);
}