TaskExercise constructor
const
TaskExercise({
- required int id,
- required String name,
- required TaskType type,
- required num maxScore,
- required String startDate,
- required String deadline,
- String? timer,
- required TaskExerciseActivity activity,
- required List<
TaskExerciseQuestionOrder> ? questionOrders, - bool? areQuestionsShuffled,
- int? quizId,
- String? mode,
- required String? viewContent,
- required String? exerciseUrl,
- List<
TaskAttachment> ? attachments, - ExerciseQuestionsSettings? settings,
Implementation
const TaskExercise({
required this.id,
required this.name,
required this.type,
required this.maxScore,
required this.startDate,
required this.deadline,
this.timer,
required this.activity,
required this.questionOrders,
this.areQuestionsShuffled,
this.quizId,
this.mode,
required this.viewContent,
required this.exerciseUrl,
this.attachments,
this.settings,
});