copyWithWrapped method
Implementation
WatchlistScreeningEntityReviewListResponse copyWithWrapped(
{Wrapped<List<EntityWatchlistScreeningReview>>?
entityWatchlistScreeningReviews,
Wrapped<String?>? nextCursor,
Wrapped<String>? requestId}) {
return WatchlistScreeningEntityReviewListResponse(
entityWatchlistScreeningReviews:
(entityWatchlistScreeningReviews != null
? entityWatchlistScreeningReviews.value
: this.entityWatchlistScreeningReviews),
nextCursor: (nextCursor != null ? nextCursor.value : this.nextCursor),
requestId: (requestId != null ? requestId.value : this.requestId));
}