updateUserPassword abstract method
- required ConfirmationCode code,
- required UserPassword newPassword,
- UserLogin? login,
- UserNum? num,
- UserEmail? email,
- UserPhone? phone,
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
Future<void> updateUserPassword({
required ConfirmationCode code,
required UserPassword newPassword,
UserLogin? login,
UserNum? num,
UserEmail? email,
UserPhone? phone,
});