copyWithWrapped method

AccountsBalanceGetRequest copyWithWrapped({
  1. Wrapped<String>? accessToken,
  2. Wrapped<String?>? secret,
  3. Wrapped<String?>? clientId,
  4. Wrapped<AccountsBalanceGetRequestOptions?>? options,
})

Implementation

AccountsBalanceGetRequest copyWithWrapped(
    {Wrapped<String>? accessToken,
    Wrapped<String?>? secret,
    Wrapped<String?>? clientId,
    Wrapped<AccountsBalanceGetRequestOptions?>? options}) {
  return AccountsBalanceGetRequest(
      accessToken:
          (accessToken != null ? accessToken.value : this.accessToken),
      secret: (secret != null ? secret.value : this.secret),
      clientId: (clientId != null ? clientId.value : this.clientId),
      options: (options != null ? options.value : this.options));
}