logout static method
logout.
Implementation
static Future<AuthResult> logout() async {
final Result result = await get('/api/v2/logout?app_id=' + Authing.sAppId);
currentUser = null;
return AuthResult(result);
}
logout.
static Future<AuthResult> logout() async {
final Result result = await get('/api/v2/logout?app_id=' + Authing.sAppId);
currentUser = null;
return AuthResult(result);
}