copyWith method
WatchlistScreeningEntityHistoryListResponse
copyWith({
- List<
EntityWatchlistScreening> ? entityWatchlistScreenings, - String? nextCursor,
- String? requestId,
Implementation
WatchlistScreeningEntityHistoryListResponse copyWith(
{List<EntityWatchlistScreening>? entityWatchlistScreenings,
String? nextCursor,
String? requestId}) {
return WatchlistScreeningEntityHistoryListResponse(
entityWatchlistScreenings:
entityWatchlistScreenings ?? this.entityWatchlistScreenings,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}