TaskCardContent constructor
const
TaskCardContent({
- Key? key,
- required TaskDragData data,
- 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,
});