Balance constructor

const Balance({
  1. required List<BalanceAmount> available,
  2. List<BalanceAmount>? connectReserved,
  3. List<BalanceAmountNet>? instantAvailable,
  4. BalanceDetail? issuing,
  5. required bool livemode,
  6. required List<BalanceAmount> pending,
})

Balance

This is an object representing your Stripe balance. You can retrieve it to see the balance currently on your Stripe account. You can also retrieve the balance history, which contains a list of [transactions](https://stripe.com/docs/reporting/balance-transaction-types) that contributed to the balance (charges, payouts, and so forth). The available and pending amounts for each currency are broken down further by payment source types. Related guide: [Understanding Connect account balances](https://stripe.com/docs/connect/account-balances)

Implementation

const Balance({
  required this.available,
  this.connectReserved,
  this.instantAvailable,
  this.issuing,
  required this.livemode,
  required this.pending,
});