platformOrgsCoursesProgressCompletionRateRetrieve method

Future<void> platformOrgsCoursesProgressCompletionRateRetrieve(
  1. String courseId,
  2. 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));
  }
}