catalogPathwaysDestroy method
DELETE Remove a pathway from the database. Params (all required): pathway_id user_id Return: count type
Implementation
Future<void> catalogPathwaysDestroy() async {
final response = await catalogPathwaysDestroyWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}