validateMFACode abstract method

Future<AuthType> validateMFACode(
  1. String code
)

Validates the given multi-factor authentication with the given code and returns the AuthType of the sign-in process.

Implementation

Future<AuthType> validateMFACode(
  // the MFA code to validate
  String code,
);