updatePhotoURL method

Future<void> updatePhotoURL(
  1. String? photoURL
)

Update the user's profile picture.

Implementation

Future<void> updatePhotoURL(String? photoURL) {
  return _delegate.updateProfile(<String, String?>{'photoURL': photoURL});
}