platformOrgsCoursesProgressRetrieve method
Completion information per enrolled user Gives Percentage of units completed in course Query Params course_id
Parameters:
Implementation
Future<void> platformOrgsCoursesProgressRetrieve(String courseId, String org,) async {
final response = await platformOrgsCoursesProgressRetrieveWithHttpInfo(courseId, org,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}