copyWith method
AccountsBalanceGetRequest
copyWith({
- String? accessToken,
- String? secret,
- String? clientId,
- AccountsBalanceGetRequestOptions? options,
Implementation
AccountsBalanceGetRequest copyWith(
{String? accessToken,
String? secret,
String? clientId,
AccountsBalanceGetRequestOptions? options}) {
return AccountsBalanceGetRequest(
accessToken: accessToken ?? this.accessToken,
secret: secret ?? this.secret,
clientId: clientId ?? this.clientId,
options: options ?? this.options);
}