FundingInstructions constructor
const
FundingInstructions({
- required FundingInstructionsBankTransfer bankTransfer,
- required String currency,
- required bool livemode,
CustomerBalanceFundingInstructionsCustomerBalanceFundingInstructions
Each customer has a [`balance`](https://stripe.com/docs/api/customers/object#customer\_object-balance) that is automatically applied to future invoices and payments using the `customer_balance` payment method. Customers can fund this balance by initiating a bank transfer to any account in the `financial_addresses` field. Related guide: [Customer balance funding instructions](https://stripe.com/docs/payments/customer-balance/funding-instructions)
Implementation
const FundingInstructions({
required this.bankTransfer,
required this.currency,
required this.livemode,
});