logout static method

Future<AuthResult> logout()

logout.

Implementation

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