PatchedMathStudent constructor

PatchedMathStudent({
  1. int? id,
  2. int? student,
  3. int? level,
  4. int? points,
  5. int? correctQuestionsForLevel,
  6. int? noIncorrectQuestionsForLevel,
  7. DateTime? createdAt,
  8. DateTime? updatedAt,
  9. String? acquiredSkills,
})

Returns a new PatchedMathStudent instance.

Implementation

PatchedMathStudent({
  this.id,
  this.student,
  this.level,
  this.points,
  this.correctQuestionsForLevel,
  this.noIncorrectQuestionsForLevel,
  this.createdAt,
  this.updatedAt,
  this.acquiredSkills,
});