WList constructor
const
WList({
- Key? key,
- required List<
Widget> children, - String? className,
- EdgeInsetsGeometry? padding,
- Color? backgroundColor,
- BorderRadius? borderRadius,
- Axis scrollDirection = Axis.vertical,
- bool shrinkWrap = false,
- ScrollPhysics? physics,
- ScrollController? controller,
- bool primary = false,
- double? itemExtent,
- Widget? separator,
Implementation
const WList({
super.key,
required this.children,
this.className,
this.padding,
this.backgroundColor,
this.borderRadius,
this.scrollDirection = Axis.vertical,
this.shrinkWrap = false,
this.physics,
this.controller,
this.primary=false,
this.itemExtent,
this.separator,
});