copyWithWrapped method

IdentityVerificationListRequest copyWithWrapped({
  1. Wrapped<String?>? secret,
  2. Wrapped<String?>? clientId,
  3. Wrapped<String>? templateId,
  4. Wrapped<String>? clientUserId,
  5. Wrapped<String?>? cursor,
})

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));
}