BoardList constructor
BoardList({
- Key? key,
- List<
Widget> ? header, - List<
BoardItem> ? items, - Color? backgroundColor,
- Color? headerBackgroundColor,
- BoardViewState? boardView,
- EdgeInsetsGeometry? headPadding,
- BorderRadiusGeometry? headBorderRadius,
- bool draggable = true,
- int? index,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- BorderRadiusGeometry? borderRadius,
- OnDropList? onDropList,
- OnTapList? onTapList,
- 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);