WList constructor

const WList({
  1. Key? key,
  2. required List<Widget> children,
  3. String? className,
  4. EdgeInsetsGeometry? padding,
  5. Color? backgroundColor,
  6. BorderRadius? borderRadius,
  7. Axis scrollDirection = Axis.vertical,
  8. bool shrinkWrap = false,
  9. ScrollPhysics? physics,
  10. ScrollController? controller,
  11. bool primary = false,
  12. double? itemExtent,
  13. 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,
});