RecoverPassword constructor

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

Recovers the 2-step verification password using a recovery code sent to an email address that was previously set up

Implementation

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