copyWith method
WatchlistScreeningIndividualListResponse
copyWith({
- List<
WatchlistScreeningIndividual> ? watchlistScreenings, - String? nextCursor,
- String? requestId,
Implementation
WatchlistScreeningIndividualListResponse copyWith(
{List<WatchlistScreeningIndividual>? watchlistScreenings,
String? nextCursor,
String? requestId}) {
return WatchlistScreeningIndividualListResponse(
watchlistScreenings: watchlistScreenings ?? this.watchlistScreenings,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}