copyWithWrapped method
Implementation
IdentityVerificationListRequest copyWithWrapped(
{Wrapped<String?>? secret,
Wrapped<String?>? clientId,
Wrapped<String>? templateId,
Wrapped<String>? clientUserId,
Wrapped<String?>? cursor}) {
return IdentityVerificationListRequest(
secret: (secret != null ? secret.value : this.secret),
clientId: (clientId != null ? clientId.value : this.clientId),
templateId: (templateId != null ? templateId.value : this.templateId),
clientUserId:
(clientUserId != null ? clientUserId.value : this.clientUserId),
cursor: (cursor != null ? cursor.value : this.cursor));
}