Question constructor

Question({
  1. String? QuestionId,
  2. String? QuizId,
  3. int? QuestionTypeId,
  4. String? Title,
  5. String? Description,
  6. String? ImageUrl,
  7. String? VideoUrl,
  8. int? Marks,
  9. int? Duration,
  10. List? Options,
})

Implementation

Question({this.QuestionId, this.QuizId, this.QuestionTypeId, this.Title, this.Description, this.ImageUrl, this.VideoUrl, this.Marks, this.Duration, this.Options});