courseThemeSummaryById method

Future<Response<CourseThemeSummaryByIdResponse>> courseThemeSummaryById({
  1. required int? themeId,
})

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