logOut method

Log Out.

ID: 3e72ba19.

Implementation

Future<Result<AuthLoggedOutBase>> logOut() async {
  // Preparing the request.
  final request = AuthLogOut();

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<AuthLoggedOutBase>();
}