loginByPhoneCode static method
OIDC Login by phone code #
Implementation
static Future<AuthResult> loginByPhoneCode(String phone, String code,
{String? phoneCountryCode}) async {
AuthRequest authData = await OIDCClient.prepareLogin();
return AuthClient.loginByPhoneCode(phone, code,
phoneCountryCode: phoneCountryCode, authData: authData);
}