updateUserPassword abstract method
- UserPassword? oldPassword,
- UserPassword newPassword
Updates password for the authenticated MyUser.
If MyUser has no password yet (when sets his password), then old
password is not required. Otherwise (when changes his password), it's
mandatory to specify the old
one.
Implementation
Future<void> updateUserPassword(
UserPassword? oldPassword,
UserPassword newPassword,
);