AuthorizationStateWaitPassword constructor

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

The user has been authorized, but needs to enter a password to start using the application

Implementation

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