LongPressDraggableGridView constructor

const LongPressDraggableGridView({
  1. required int index,
  2. required VoidCallback onDragCancelled,
  3. Widget? feedback,
  4. Widget? childWhenDragging,
  5. Key? key,
  6. required List<DraggableGridItem> list,
})

Implementation

const LongPressDraggableGridView(
    {required this.index,
    required this.onDragCancelled,
    this.feedback,
    this.childWhenDragging,
    super.key,
    required this.list});