copyWithWrapped method

Implementation

SandboxPublicTokenCreateRequestOptions copyWithWrapped(
    {Wrapped<String?>? webhook,
    Wrapped<String?>? overrideUsername,
    Wrapped<String?>? overridePassword,
    Wrapped<SandboxPublicTokenCreateRequestOptionsTransactions?>?
        transactions,
    Wrapped<SandboxPublicTokenCreateRequestOptionsIncomeVerification?>?
        incomeVerification}) {
  return SandboxPublicTokenCreateRequestOptions(
      webhook: (webhook != null ? webhook.value : this.webhook),
      overrideUsername: (overrideUsername != null
          ? overrideUsername.value
          : this.overrideUsername),
      overridePassword: (overridePassword != null
          ? overridePassword.value
          : this.overridePassword),
      transactions:
          (transactions != null ? transactions.value : this.transactions),
      incomeVerification: (incomeVerification != null
          ? incomeVerification.value
          : this.incomeVerification));
}