loginByPhoneCode static method

Future<AuthResult> loginByPhoneCode(
  1. String phone,
  2. String code
)

OIDC Login by phone code #

Implementation

static Future<AuthResult> loginByPhoneCode(String phone, String code) async {
  AuthRequest authData = await OIDCClient.prepareLogin();
  return AuthClient.loginByPhoneCode(phone, code, authData: authData);
}