signInWithPhoneNumber method

  1. @override
Future<ConfirmationResult> signInWithPhoneNumber(
  1. String phoneNumber, [
  2. RecaptchaVerifier? verifier
])
override

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<ConfirmationResult> signInWithPhoneNumber(String phoneNumber,
    [RecaptchaVerifier? verifier]) async {
  return MockConfirmationResult(onConfirm: () => _fakeSignIn());
}