PatchedStudentAnswer constructor

PatchedStudentAnswer({
  1. int? id,
  2. MathStudent? mathStudent,
  3. MathQuestionWithAnswer? question,
  4. String? answer,
  5. String? image,
  6. bool? isCorrect,
  7. int? score,
  8. String? feedback,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
})

Returns a new PatchedStudentAnswer instance.

Implementation

PatchedStudentAnswer({
  this.id,
  this.mathStudent,
  this.question,
  this.answer,
  this.image,
  this.isCorrect,
  this.score,
  this.feedback,
  this.createdAt,
  this.updatedAt,
});