updateProfile method
Updates a user's profile data.
Implementation
Future<void> updateProfile({String? displayName, String? photoURL}) {
return _delegate.updateProfile(<String, String?>{
'displayName': displayName,
'photoURL': photoURL,
});
}