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