copyWith method
Implementation
WatchlistScreeningIndividualGetRequest copyWith(
{String? watchlistScreeningId, String? secret, String? clientId}) {
return WatchlistScreeningIndividualGetRequest(
watchlistScreeningId: watchlistScreeningId ?? this.watchlistScreeningId,
secret: secret ?? this.secret,
clientId: clientId ?? this.clientId);
}