BoardList constructor

const BoardList({
  1. Key? key,
  2. List<Widget>? header,
  3. List<BoardItem>? items,
  4. Widget? footer,
  5. Color? backgroundColor,
  6. Color? headerBackgroundColor,
  7. BoardViewState? boardView,
  8. bool draggable = true,
  9. int? index,
  10. OnDropList? onDropList,
  11. OnTapList? onTapList,
  12. OnStartDragList? onStartDragList,
})

Implementation

const BoardList({
  Key? key,
  this.header,
  this.items,
  this.footer,
  this.backgroundColor,
  this.headerBackgroundColor,
  this.boardView,
  this.draggable = true,
  this.index, this.onDropList, this.onTapList, this.onStartDragList,
}) : super(key: key);