ClassSession constructor

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

Implementation

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