AuthorizationStateWaitPassword constructor

const AuthorizationStateWaitPassword({
  1. required String passwordHint,
  2. required bool hasRecoveryEmailAddress,
  3. required bool hasPassportData,
  4. required String recoveryEmailAddressPattern,
  5. dynamic extra,
  6. int? clientId,
})

The user has been authorized, but needs to enter a 2-step verification password to start using the application.. Call checkAuthenticationPassword to provide the password, or requestAuthenticationPasswordRecovery to recover the password, or deleteAccount to delete the account after a week

Implementation

const AuthorizationStateWaitPassword({
  required this.passwordHint,
  required this.hasRecoveryEmailAddress,
  required this.hasPassportData,
  required this.recoveryEmailAddressPattern,
  this.extra,
  this.clientId,
});