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