signInWithPhoneNumber method

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

Future<ConfirmationResultPlatform> signInWithPhoneNumber(
  String phoneNumber,
  RecaptchaVerifierFactoryPlatform applicationVerifier,
) async {
  throw UnimplementedError('signInWithPhoneNumber() is not implemented');
}