updateUserPassword abstract method

Future<void> updateUserPassword(
  1. UserPassword? oldPassword,
  2. 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,
);