logout abstract method
The authentication token provided by the 'login' method can be used until the 'logout' method is called.
Implementation
@Get()
Future<Response<AlifResponse<Map<String, dynamic>>>> logout({
/// Authentication token of a currently logged-in user (active session)
@Query() required String token,
/// The AIM API version this request is designed for
@Query('v') int version = 1,
/// The remote procedure to call. Do not edit this
@Query() String method = 'logout',
});