confirmPhoneCodeWeb method

Future<void> confirmPhoneCodeWeb(
  1. String verificationCode
)

Confirm phone code on Web platform

Throws a LogInWithGoogleFailure if an exception occurs.

Implementation

Future<void> confirmPhoneCodeWeb(String verificationCode) async {
  await _confirmationResult.confirm(verificationCode);
}