BoardView constructor

const BoardView({
  1. Key? key,
  2. dynamic itemInMiddleWidget(
    1. bool
    )?,
  3. BoardViewController? boardViewController,
  4. int dragDelay = 300,
  5. OnDropBottomWidget? onDropItemInMiddleWidget,
  6. bool isSelecting = false,
  7. List<BoardList>? lists,
  8. double width = 280,
  9. Widget? middleWidget,
  10. double? bottomPadding,
})

Implementation

const BoardView(
    {Key? key,
    this.itemInMiddleWidget,
    this.boardViewController,
    this.dragDelay = 300,
    this.onDropItemInMiddleWidget,
    this.isSelecting = false,
    this.lists,
    this.width = 280,
    this.middleWidget,
    this.bottomPadding})
    : super(key: key);