updateImageUrl method

Future<void> updateImageUrl(
  1. String photoURL
)

Implementation

Future<void> updateImageUrl(String photoURL) async {
  if (photoURL.isEmpty) return;
  if (currentUser == null) return;
  if (photoURL.isValidUrlRegex) {
    await currentUser!.updatePhotoURL(photoURL);
  }
}