healthGet method

Future<void> healthGet()

Check HTTP server status

Implementation

Future<void> healthGet() async {
  final response = await healthGetWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}