BoardView constructor

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

Implementation

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