verifyPhoneNumber method
Future<void>
verifyPhoneNumber({
- required String phoneNumber,
- TextEditingController? otpController,
- bool signInOnAutoRetrival = true,
- void codeSent()?,
- void verificationFailed(
- FirebaseAuthException
- void verificationCompleted(
- PhoneAuthCredential
- void codeAutoRetrievalTimeout()?,
- RecaptchaVerifier? verifier,
- int? forceResendingToken,
- Duration? timeout,
override
Starts a sign-in flow for a phone number.
You can optionally provide a RecaptchaVerifier instance to control the
reCAPTCHA widget apperance and behaviour.
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
verifyPhoneNumber({
required String phoneNumber,
TextEditingController? otpController,
bool signInOnAutoRetrival = true,
void Function(String, int?)? codeSent,
void Function(FirebaseAuthException)? verificationFailed,
void Function(PhoneAuthCredential)? verificationCompleted,
void Function(String)? codeAutoRetrievalTimeout,
RecaptchaVerifier? verifier,
int? forceResendingToken,
Duration? timeout,
}) {
return auth.signInWithPhoneNumber(phoneNumber);
}