courseThemeSummaryById method
Get course theme summary by its ID. @param themeId Numeric identifier of the course theme specified in URL path.
Implementation
Future<chopper.Response<CourseThemeSummaryByIdResponse>>
courseThemeSummaryById({required int? themeId}) {
generatedMapping.putIfAbsent(
CourseThemeSummaryByIdResponse,
() => CourseThemeSummaryByIdResponse.fromJsonFactory,
);
return _courseThemeSummaryById(themeId: themeId);
}