InputChecklist constructor

InputChecklist({
  1. FormattedText? title,
  2. required List<InputChecklistTask> tasks,
  3. required bool othersCanAddTasks,
  4. required bool othersCanMarkTasksAsDone,
})

Implementation

InputChecklist({
  this.title,
  required this.tasks,
  required this.othersCanAddTasks,
  required this.othersCanMarkTasksAsDone,
});