copyWith method
WatchlistScreeningEntityProgramListResponse
copyWith({
- List<
EntityWatchlistProgram> ? entityWatchlistPrograms, - String? nextCursor,
- String? requestId,
Implementation
WatchlistScreeningEntityProgramListResponse copyWith(
{List<EntityWatchlistProgram>? entityWatchlistPrograms,
String? nextCursor,
String? requestId}) {
return WatchlistScreeningEntityProgramListResponse(
entityWatchlistPrograms:
entityWatchlistPrograms ?? this.entityWatchlistPrograms,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}