DraggableGridItem constructor

DraggableGridItem({
  1. required Widget child,
  2. bool isDraggable = false,
  3. dynamic dragCallback(
    1. BuildContext context,
    2. bool isDragging
    )?,
})

Implementation

DraggableGridItem(
    {required this.child, this.isDraggable = false, this.dragCallback});