CourseOverviewByIdResponse constructor

const CourseOverviewByIdResponse({
  1. required int id,
  2. required String name,
  3. required bool isArchived,
  4. required PublicationState state,
  5. required String? publishDate,
  6. required String? publishedAt,
  7. required CourseSettings settings,
  8. required List<CourseThemeItem> themes,
})

Implementation

const CourseOverviewByIdResponse({
  required this.id,
  required this.name,
  required this.isArchived,
  required this.state,
  required this.publishDate,
  required this.publishedAt,
  required this.settings,
  required this.themes,
});