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