HcDragItem constructor

const HcDragItem({
  1. Key? key,
  2. bool isDraggable = true,
  3. bool isDroppable = true,
  4. required Widget child,
})

Implementation

const HcDragItem({
  super.key,
  this.isDraggable = true,
  this.isDroppable = true,
  required this.child,
});