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