BoardList constructor

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. EdgeInsetsGeometry? headPadding,
  9. BorderRadiusGeometry? headBorderRadius,
  10. bool draggable = true,
  11. int? index,
  12. EdgeInsetsGeometry? padding,
  13. EdgeInsetsGeometry? margin,
  14. BorderRadiusGeometry? borderRadius,
  15. OnDropList? onDropList,
  16. OnTapList? onTapList,
  17. OnStartDragList? onStartDragList,
})

Implementation

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