updatePassword method

Future<void> updatePassword(
  1. String newPassword
)

Updates the user's password to newPassword. Requires the user to have recently signed in. If not, ask the user to authenticate again and then use reauthenticate().

Implementation

Future<void> updatePassword(String newPassword) =>
    handleThenable(jsObject.updatePassword(newPassword));