QuizQuestionModel constructor
QuizQuestionModel({
- required String type,
- required Params params,
- required String questionKey,
- required String label,
- required String? shortLabel,
- required dynamic value,
- List<
QuizOptionModel> ? options, - DisplayConditionModel? displayCondition,
- required bool enabled,
- required bool internal,
- required WhyConfig? whyConfig,
- required bool? whyTrue,
- 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,
});