TaskListItemCard constructor

const TaskListItemCard({
  1. dynamic key,
  2. required String taskListId,
  3. bool showSpace = false,
  4. bool showCompletedTask = false,
  5. bool initiallyExpanded = true,
})

Implementation

const TaskListItemCard({
  super.key,
  required this.taskListId,
  this.showSpace = false,
  this.showCompletedTask = false,
  this.initiallyExpanded = true,
});