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