ordersDestroy method
Implementation
Future<void> ordersDestroy(
int id,
) async {
final response = await ordersDestroyWithHttpInfo(
id,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}