CustomListView constructor

const CustomListView({
  1. Key? key,
  2. required List<Widget> children,
  3. bool shrinkwrap = true,
  4. ScrollController? scrollController,
})

Implementation

const CustomListView({
  super.key,
  required this.children,
  this.shrinkwrap = true,
  this.scrollController,
});