copyWith method
WatchlistScreeningEntityHitListResponse
copyWith({
- List<
EntityWatchlistScreeningHit> ? entityWatchlistScreeningHits, - String? nextCursor,
- String? requestId,
Implementation
WatchlistScreeningEntityHitListResponse copyWith(
{List<EntityWatchlistScreeningHit>? entityWatchlistScreeningHits,
String? nextCursor,
String? requestId}) {
return WatchlistScreeningEntityHitListResponse(
entityWatchlistScreeningHits:
entityWatchlistScreeningHits ?? this.entityWatchlistScreeningHits,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}