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