UExamCreateParams constructor

UExamCreateParams({
  1. required String title,
  2. required String description,
  3. required List<UQuestionJson> questions,
  4. required List<UExamScoreDetail> scoreDetails,
  5. required String categoryId,
  6. required List<int> tags,
})

Implementation

UExamCreateParams({
  required this.title,
  required this.description,
  required this.questions,
  required this.scoreDetails,
  required this.categoryId,
  required this.tags,
});