signInWithPhoneNumber method

  1. @override
Future<ConfirmationResultPlatform> signInWithPhoneNumber(
  1. String phoneNumber,
  2. RecaptchaVerifierFactoryPlatform applicationVerifier
)

Starts a sign-in flow for a phone number.

You can optionally provide a RecaptchaVerifier instance to control the reCAPTCHA widget appearance and behavior.

Once the reCAPTCHA verification has completed, called ConfirmationResult.confirm with the users SMS verification code to complete the authentication flow.

This method is only available on web based platforms.

Implementation

@override
Future<ConfirmationResultPlatform> signInWithPhoneNumber(String phoneNumber,
    RecaptchaVerifierFactoryPlatform applicationVerifier) async {
  try {
    final recaptchaVerifier = applicationVerifier.delegate;

    return ConfirmationResultDesktop(
      this,
      await _delegate!.signInWithPhoneNumber(phoneNumber, recaptchaVerifier),
    );
  } catch (e) {
    throw getFirebaseAuthException(e);
  }
}