copyWith method

AccountsBalanceGetRequest copyWith({
  1. String? accessToken,
  2. String? secret,
  3. String? clientId,
  4. 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);
}