courseOverviewById method
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);
}