Question constructor

Question({
  1. ChoiceQuestion? choiceQuestion,
  2. DateQuestion? dateQuestion,
  3. FileUploadQuestion? fileUploadQuestion,
  4. Grading? grading,
  5. String? questionId,
  6. RatingQuestion? ratingQuestion,
  7. bool? required,
  8. RowQuestion? rowQuestion,
  9. ScaleQuestion? scaleQuestion,
  10. TextQuestion? textQuestion,
  11. TimeQuestion? timeQuestion,
})

Implementation

Question({
  this.choiceQuestion,
  this.dateQuestion,
  this.fileUploadQuestion,
  this.grading,
  this.questionId,
  this.ratingQuestion,
  this.required,
  this.rowQuestion,
  this.scaleQuestion,
  this.textQuestion,
  this.timeQuestion,
});