Question constructor

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

Implementation

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