copyWith method
Implementation
BankTransferBalanceGetRequest copyWith(
{String? clientId, String? secret, String? originationAccountId}) {
return BankTransferBalanceGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
originationAccountId:
originationAccountId ?? this.originationAccountId);
}