SetPassword constructor

const SetPassword(
  1. {required String oldPassword,
  2. required String newPassword,
  3. required String newHint,
  4. required bool setRecoveryEmailAddress,
  5. required String newRecoveryEmailAddress}
)

Changes the 2-step verification password for the current user. If a new recovery email address is specified, then the change will not be applied until the new recovery email address is confirmed

Implementation

const SetPassword({
  required this.oldPassword,
  required this.newPassword,
  required this.newHint,
  required this.setRecoveryEmailAddress,
  required this.newRecoveryEmailAddress,
});