courseOverviewById method

Future<Response<CourseOverviewByIdResponse>> courseOverviewById({
  1. required int? courseId,
})

Get course overview by its ID. @param courseId Numeric identifier of the course specified in URL path.

Implementation

Future<chopper.Response<CourseOverviewByIdResponse>> courseOverviewById({
  required int? courseId,
}) {
  generatedMapping.putIfAbsent(
    CourseOverviewByIdResponse,
    () => CourseOverviewByIdResponse.fromJsonFactory,
  );

  return _courseOverviewById(courseId: courseId);
}