copyWith method
WatchlistScreeningIndividualProgramListResponse
copyWith({
- List<
IndividualWatchlistProgram> ? watchlistPrograms, - String? nextCursor,
- String? requestId,
Implementation
WatchlistScreeningIndividualProgramListResponse copyWith(
{List<IndividualWatchlistProgram>? watchlistPrograms,
String? nextCursor,
String? requestId}) {
return WatchlistScreeningIndividualProgramListResponse(
watchlistPrograms: watchlistPrograms ?? this.watchlistPrograms,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}