React Native Firebase
    Preparing search index...

    A custom error in the event verifying a phone number failed.

    firebase.auth().verifyPhoneNumber('+4423456789')
    .on('state_changed', (phoneAuthSnapshot) => {
    console.log('Snapshot state: ', phoneAuthSnapshot.state);
    }, (phoneAuthError) => {
    console.error('Error: ', phoneAuthError.message);
    });
    interface PhoneAuthError {
        code: string | null;
        message: string | null;
        stack: string | null;
        verificationId: string;
    }
    Index

    Properties

    code: string | null

    The code the verification failed with.

    message: string | null

    JavaScript error message.

    stack: string | null

    JavaScript error stack trace.

    verificationId: string

    The verification ID which failed.