React Native Firebase
    Preparing search index...

    Holds the user metadata for the current User.

    const user = firebase.auth().currentUser;
    console.log('User metadata: ', user.metadata);
    interface UserMetadata {
        creationTime?: string;
        lastSignInTime?: string;
    }
    Index

    Properties

    creationTime?: string

    Returns the timestamp at which this account was created as dictated by the server clock as an ISO Date string.

    lastSignInTime?: string

    Returns the last signin timestamp as dictated by the server clock as an ISO Date string. This is only accurate up to a granularity of 2 minutes for consecutive sign-in attempts.