InputChecklist constructor
InputChecklist({
- FormattedText? title,
- required List<
InputChecklistTask> tasks, - required bool othersCanAddTasks,
- required bool othersCanMarkTasksAsDone,
Implementation
InputChecklist({
this.title,
required this.tasks,
required this.othersCanAddTasks,
required this.othersCanMarkTasksAsDone,
});