PersonFutureRequirements constructor

const PersonFutureRequirements({
  1. List<AccountRequirementsAlternative>? alternatives,
  2. required List<String> currentlyDue,
  3. required List<AccountRequirementsError> errors,
  4. required List<String> eventuallyDue,
  5. required List<String> pastDue,
  6. required List<String> pendingVerification,
})

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

Implementation

const PersonFutureRequirements({
  this.alternatives,
  required this.currentlyDue,
  required this.errors,
  required this.eventuallyDue,
  required this.pastDue,
  required this.pendingVerification,
});