React Native Firebase
    Preparing search index...

    Request used to update user profile information.

    const update = {
    displayName: 'Alias',
    photoURL: 'https://my-cdn.com/assets/user/123.png',
    };

    await firebase.auth().currentUser.updateProfile(update);
    interface UpdateProfile {
        displayName?: string | null;
        photoURL?: string | null;
    }
    Index

    Properties

    displayName?: string | null

    An optional display name for the user. Explicitly pass null to clear the displayName.

    photoURL?: string | null

    An optional photo URL for the user. Explicitly pass null to clear the photoURL.