copyWith method

BankTransferBalanceGetResponse copyWith({
  1. BankTransferBalance? balance,
  2. String? originationAccountId,
  3. String? requestId,
})

Implementation

BankTransferBalanceGetResponse copyWith(
    {BankTransferBalance? balance,
    String? originationAccountId,
    String? requestId}) {
  return BankTransferBalanceGetResponse(
      balance: balance ?? this.balance,
      originationAccountId: originationAccountId ?? this.originationAccountId,
      requestId: requestId ?? this.requestId);
}