QuizQuestionModel constructor

QuizQuestionModel({
  1. required String type,
  2. required Params params,
  3. required String questionKey,
  4. required String label,
  5. required String? shortLabel,
  6. required dynamic value,
  7. List<QuizOptionModel>? options,
  8. DisplayConditionModel? displayCondition,
  9. required bool enabled,
  10. required bool internal,
  11. required WhyConfig? whyConfig,
  12. required bool? whyTrue,
  13. required bool? whyFalse,
})

Implementation

QuizQuestionModel({
  required this.type,
  required this.params,
  required this.questionKey,
  required this.label,
  required this.shortLabel,
  required this.value,
  this.options,
  this.displayCondition,
  required this.enabled,
  required this.internal,
  required this.whyConfig,
  required this.whyTrue,
  required this.whyFalse,
});