ClassQuizAnswerItem constructor

const ClassQuizAnswerItem({
  1. required String answer_text,
  2. required int index,
  3. required dynamic class_quiz_question,
  4. required bool selected,
  5. required Color background_color,
  6. required Color text_color,
})

Implementation

const ClassQuizAnswerItem({
  required this.answer_text,
  required this.index,
  required this.class_quiz_question,
  required this.selected,
  required this.background_color,
  required this.text_color,
});