copyWith method

BankTransferBalanceGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? originationAccountId,
})

Implementation

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