Checklist constructor
Checklist({
- FormattedText? title,
- required List<
ChecklistTask> tasks, - required bool othersCanAddTasks,
- required bool canAddTasks,
- required bool othersCanMarkTasksAsDone,
- required bool canMarkTasksAsDone,
Implementation
Checklist({
this.title,
required this.tasks,
required this.othersCanAddTasks,
required this.canAddTasks,
required this.othersCanMarkTasksAsDone,
required this.canMarkTasksAsDone,
});