QuizStepModel constructor

QuizStepModel({
  1. required String stepKey,
  2. required String? stepLabel,
  3. String? stepDescription,
  4. bool showStepLabel = true,
  5. required List<QuizQuestionModel> allQuestions,
})

Implementation

QuizStepModel({
  required this.stepKey,
  required this.stepLabel,
  this.stepDescription,
  this.showStepLabel = true,
  required this.allQuestions,
});