updateUserPassword method

  1. @override
Future<void> updateUserPassword({
  1. required ConfirmationCode code,
  2. required UserPassword newPassword,
  3. UserLogin? login,
  4. UserNum? num,
  5. UserEmail? email,
  6. UserPhone? phone,
})
override

Resets password for a MyUser identified by the provided num/login/email/phone (exactly one of fourth should be specified) and recovery ConfirmationCode.

If MyUser has no password yet, then newPassword will be his first password unlocking the sign-in capability.

Implementation

@override
Future<void> updateUserPassword({
  required ConfirmationCode code,
  required UserPassword newPassword,
  UserLogin? login,
  UserNum? num,
  UserEmail? email,
  UserPhone? phone,
}) async {
  Log.debug(
    'updateUserPassword($code, ***, $login, $num, $email, $phone)',
    '$runtimeType',
  );

  await _graphQlProvider.updateUserPassword(
    identifier: MyUserIdentifier(
      login: login,
      num: num,
      email: email,
      phone: phone,
    ),
    confirmation: MyUserCredentials(code: code),
    newPassword: newPassword,
  );
}