catalogCoursesDestroy method
DELETE Remove a course from the database. Params (all required): course_id org
Implementation
Future<void> catalogCoursesDestroy() async {
final response = await catalogCoursesDestroyWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}