DraggableGridItem constructor

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

Implementation

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