PersonRequirements constructor

const PersonRequirements({
  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,
})

PersonRequirements

Implementation

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