updateEmail method

Future updateEmail(
  1. String email
)

Update the email of the Firebase User

Implementation

Future updateEmail(String email) async {
  await firebaseAuth.currentUser?.updateEmail(email);
}