copyWith method
BankTransferBalanceGetResponse
copyWith({
- BankTransferBalance? balance,
- String? originationAccountId,
- 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);
}