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