updatePhotoURL method

Future updatePhotoURL(
  1. String photoUrl
)

Update the photoURL of the Firebase User

Implementation

Future updatePhotoURL(String photoUrl) async {
  await firebaseAuth.currentUser?.updatePhotoURL(photoUrl);
}