BasicListView constructor

const BasicListView({
  1. Key? key,
  2. required int itemCount,
  3. required Widget itemBuilder(
    1. BuildContext,
    2. int
    ),
  4. bool enableDivider = false,
  5. EdgeInsetsGeometry? padding,
  6. bool reverse = false,
  7. ScrollController? controller,
  8. ScrollPhysics? physics,
})

Implementation

const BasicListView({
  Key? key,
  required this.itemCount,
  required this.itemBuilder,
  this.enableDivider = false,
  this.padding,
  this.reverse = false,
  this.controller,
  this.physics,
}) : super(key: key);