BankAccountFutureRequirements constructor

const BankAccountFutureRequirements({
  1. List<String>? currentlyDue,
  2. List<AccountRequirementsError>? errors,
  3. List<String>? pastDue,
  4. List<String>? pendingVerification,
})

Information about the [upcoming new requirements for the bank account](https://stripe.com/docs/connect/custom-accounts/future-requirements), including what information needs to be collected, and by when.

Implementation

const BankAccountFutureRequirements({
  this.currentlyDue,
  this.errors,
  this.pastDue,
  this.pendingVerification,
});