CashBalance constructor
const
CashBalance({})
cash_balance
A customer's `Cash balance` represents real funds. Customers can add funds to their cash balance by sending a bank transfer. These funds can be used for payment and can eventually be paid out to your bank account.
Implementation
const CashBalance({
this.available,
required this.customer,
required this.livemode,
required this.settings,
});