AccountSettings constructor

const AccountSettings({
  1. AccountBacsDebitPaymentsSettings? bacsDebitPayments,
  2. required AccountBrandingSettings branding,
  3. AccountCardIssuingSettings? cardIssuing,
  4. required AccountCardPaymentsSettings cardPayments,
  5. required AccountDashboardSettings dashboard,
  6. AccountInvoicesSettings? invoices,
  7. required AccountPaymentsSettings payments,
  8. AccountPayoutSettings? payouts,
  9. AccountSepaDebitPaymentsSettings? sepaDebitPayments,
  10. AccountTreasurySettings? treasury,
})

Options for customizing how the account functions within Stripe.

Implementation

const AccountSettings({
  this.bacsDebitPayments,
  required this.branding,
  this.cardIssuing,
  required this.cardPayments,
  required this.dashboard,
  this.invoices,
  required this.payments,
  this.payouts,
  this.sepaDebitPayments,
  this.treasury,
});