catalogMilestonesSkillPointsCourseCreate method
POST Update skill point information for course Params: course_id point_data
Implementation
Future<void> catalogMilestonesSkillPointsCourseCreate() async {
final response = await catalogMilestonesSkillPointsCourseCreateWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}