TaskSolution constructor

const TaskSolution({
  1. required TaskType type,
  2. String? solutionUrl,
  3. List<TaskSolutionAnswersItem>? answers,
  4. List<TaskAttachment>? attachments,
})

Implementation

const TaskSolution({
  required this.type,
  this.solutionUrl,
  this.answers,
  this.attachments,
});