Answer constructor

Answer({
  1. FileUploadAnswers? fileUploadAnswers,
  2. Grade? grade,
  3. String? questionId,
  4. TextAnswers? textAnswers,
})

Implementation

Answer({
  this.fileUploadAnswers,
  this.grade,
  this.questionId,
  this.textAnswers,
});