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