platformOrgsProgressStartedRetrieve method

Future<void> platformOrgsProgressStartedRetrieve(
  1. String org
)

Started means an enrollment For platform : Total users who have atleast an enrollment For course : Total users enrolled For learner : Total courses in progress Query Params 1. course_id

Parameters:

Implementation

Future<void> platformOrgsProgressStartedRetrieve(String org,) async {
  final response = await platformOrgsProgressStartedRetrieveWithHttpInfo(org,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}