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