updatePassword method

Future updatePassword(
  1. String password
)

Update the password of the Firebase User

Implementation

Future updatePassword(String password) async {
  await firebaseAuth.currentUser?.updatePassword(password);
}