VerificationState constructor

VerificationState({
  1. VerificationStep currentStep = const VerificationStep.consent(),
  2. bool shouldDismiss = false,
  3. String? errorMessage,
  4. bool showError = false,
  5. Branding? branding,
  6. IdDocumentState? currentEntityState,
  7. VerificationStep? nextStep,
  8. String? pendingSessionId,
  9. IdDocumentState? pendingEntityState,
  10. ExtraData? pendingExtraData,
  11. Requirement? pendingRequirement,
  12. bool isEstablishingSession = false,
  13. bool canProceed = false,
})

Implementation

VerificationState({
  this.currentStep = const VerificationStep.consent(),
  this.shouldDismiss = false,
  this.errorMessage,
  this.showError = false,
  this.branding,
  this.currentEntityState,
  this.nextStep,
  this.pendingSessionId,
  this.pendingEntityState,
  this.pendingExtraData,
  this.pendingRequirement,
  this.isEstablishingSession = false,
  this.canProceed = false,
});