PatchedMathQuestion constructor

PatchedMathQuestion({
  1. int? id,
  2. Topic? topic,
  3. SubTopic? subTopic,
  4. List<Skill> skillsAssessed = const [],
  5. String? content,
  6. int? difficulty,
  7. MathQuestionCognitiveSkills? cognitiveSkills,
  8. int? grade,
  9. String? expectedTimeToSolve,
  10. String? relatedConcepts,
  11. String? hintsProvided,
  12. String? learningOutcomes,
  13. String? prerequisites,
  14. String? recommendedGradeLevel,
  15. String? image,
  16. DateTime? createdAt,
  17. DateTime? updatedAt,
  18. int? platform,
})

Returns a new PatchedMathQuestion instance.

Implementation

PatchedMathQuestion({
  this.id,
  this.topic,
  this.subTopic,
  this.skillsAssessed = const [],
  this.content,
  this.difficulty,
  this.cognitiveSkills,
  this.grade,
  this.expectedTimeToSolve,
  this.relatedConcepts,
  this.hintsProvided,
  this.learningOutcomes,
  this.prerequisites,
  this.recommendedGradeLevel,
  this.image,
  this.createdAt,
  this.updatedAt,
  this.platform,
});