TaskListItemCard constructor

const TaskListItemCard({
  1. dynamic key,
  2. required String taskListId,
  3. dynamic refDetails,
  4. bool showSpace = false,
  5. bool showTaskListIndication = false,
  6. bool showCompletedTask = false,
  7. bool showOnlyTaskList = false,
  8. bool initiallyExpanded = true,
  9. bool canExpand = true,
  10. dynamic cardMargin,
  11. dynamic onTitleTap,
})

Implementation

const TaskListItemCard({
  super.key,
  required this.taskListId,
  this.refDetails,
  this.showSpace = false,
  this.showTaskListIndication = false,
  this.showCompletedTask = false,
  this.showOnlyTaskList = false,
  this.initiallyExpanded = true,
  this.canExpand = true,
  this.cardMargin,
  this.onTitleTap,
});