platformOrgsRetrieve method

Future<void> platformOrgsRetrieve(
  1. String org
)

Learners list with email name and date_joined

Parameters:

Implementation

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