ClassQuiz constructor

const ClassQuiz({
  1. required String course_id,
  2. required String course_name,
  3. required String unit_id,
  4. required bool last_unit,
  5. required Color language_picker_items_text_color,
  6. required bool language_picker,
  7. required Color text_color,
  8. required Color topbar_color,
})

Implementation

const ClassQuiz({
  required this.course_id,
  required this.course_name,
  required this.unit_id,
  required this.last_unit,
  required this.language_picker_items_text_color,
  required this.language_picker,
  required this.text_color,
  required this.topbar_color,
});