TaskCardContent constructor

const TaskCardContent({
  1. Key? key,
  2. required TaskDragData data,
  3. required TaskCardTheme theme,
})

Creates a TaskCardContent widget.

The data parameter provides the task information to display. The theme parameter controls the visual styling of the content.

Implementation

const TaskCardContent({
  super.key,
  required this.data,
  required this.theme,
});