MathStudent constructor
MathStudent({})
Returns a new MathStudent instance.
Implementation
MathStudent({
required this.id,
required this.student,
required this.level,
required this.points,
required this.correctQuestionsForLevel,
required this.noIncorrectQuestionsForLevel,
required this.createdAt,
required this.updatedAt,
required this.acquiredSkills,
});