PatchedStudentAnswer constructor
PatchedStudentAnswer({
- int? id,
- MathStudent? mathStudent,
- MathQuestionWithAnswer? question,
- String? answer,
- String? image,
- bool? isCorrect,
- int? score,
- String? feedback,
- DateTime? createdAt,
- 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,
});