platformOrgsCoursesProgressCompletionRateRetrieve method
Future<void>
platformOrgsCoursesProgressCompletionRateRetrieve(
- String courseId,
- String org
)
Average of total completed units
Parameters:
Implementation
Future<void> platformOrgsCoursesProgressCompletionRateRetrieve(String courseId, String org,) async {
final response = await platformOrgsCoursesProgressCompletionRateRetrieveWithHttpInfo(courseId, org,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}