BoardItem constructor

const BoardItem({
  1. Key? key,
  2. BoardListState? boardList,
  3. Widget? item,
  4. int? index,
  5. OnDropItem? onDropItem,
  6. OnTapItem? onTapItem,
  7. OnStartDragItem? onStartDragItem,
  8. bool draggable = true,
  9. 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);