BoardItem constructor
const
BoardItem({
- Key? key,
- BoardListState? boardList,
- Widget? item,
- int? index,
- OnDropItem? onDropItem,
- OnTapItem? onTapItem,
- OnStartDragItem? onStartDragItem,
- bool draggable = true,
- OnDragItem? onDragItem,
Implementation
const BoardItem(
{Key? key,
this.boardList,
this.item,
this.index,
this.onDropItem,
this.onTapItem,
this.onStartDragItem,
this.draggable = true,
this.onDragItem})
: super(key: key);