copyWith method
WatchlistScreeningIndividualHitListResponse
copyWith({
- List<
WatchlistScreeningHit> ? watchlistScreeningHits, - String? nextCursor,
- String? requestId,
Implementation
WatchlistScreeningIndividualHitListResponse copyWith(
{List<WatchlistScreeningHit>? watchlistScreeningHits,
String? nextCursor,
String? requestId}) {
return WatchlistScreeningIndividualHitListResponse(
watchlistScreeningHits:
watchlistScreeningHits ?? this.watchlistScreeningHits,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}