RecoverAuthenticationPassword constructor

const RecoverAuthenticationPassword({
  1. required String recoveryCode,
  2. required String newPassword,
  3. required String newHint,
})

Recovers the 2-step verification password with a password recovery code sent to an email address that was previously set up. Works only when the current authorization state is authorizationStateWaitPassword

Implementation

const RecoverAuthenticationPassword({
  required this.recoveryCode,
  required this.newPassword,
  required this.newHint,
});