resolveSignIn method

Future<UserCredential> resolveSignIn(
  1. MultiFactorAssertion assertion
)

Completes sign in with a second factor using an MultiFactorAssertion which confirms that the user has successfully completed the second factor challenge.

Implementation

Future<UserCredential> resolveSignIn(
  MultiFactorAssertion assertion,
) async {
  final credential = await _delegate.resolveSignIn(assertion._delegate);
  return UserCredential._(_auth, credential);
}