list method
Implementation
Widget list(List<Widget> list) {
return list.xCustomScrollView(
anchor: anchor ?? 0.0,
cacheExtent: cacheExtent,
center: center,
controller: controller,
dragStartBehavior: dragStartBehavior ?? DragStartBehavior.start,
key: key,
physics: physics,
primary: primary,
reverse: reverse ?? false,
scrollDirection: scrollDirection ?? Axis.vertical,
semanticChildCount: semanticChildCount,
shrinkWrap: shrinkWrap ?? false,
);
}