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