Quiz constructor

Quiz({
  1. String? QuizId,
  2. String? UnitId,
  3. String? Title,
  4. String? Description,
  5. int? QuizTypeId,
  6. int? Marks,
  7. int? Duration,
  8. List? Question,
})

Implementation

Quiz({this.QuizId, this.UnitId, this.Title, this.Description, this.QuizTypeId, this.Marks, this.Duration, this.Question});