CustomListView constructor
const
CustomListView({
- Key? key,
- required List<
Widget> children, - bool shrinkwrap = true,
- ScrollController? scrollController,
Implementation
const CustomListView({
super.key,
required this.children,
this.shrinkwrap = true,
this.scrollController,
});