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