SmartListViewBuilder constructor

SmartListViewBuilder({
  1. Key? key,
  2. Axis scrollDirection = Axis.vertical,
  3. bool reverse = false,
  4. bool? primary,
  5. ScrollPhysics? physics,
  6. bool shrinkWrap = false,
  7. EdgeInsetsGeometry? padding,
  8. double? itemExtent,
  9. Widget? prototypeItem,
  10. ScrollController? controller,
  11. bool addAutomaticKeepAlives = true,
  12. bool addRepaintBoundaries = true,
  13. int? itemCount,
  14. required IndexedWidgetBuilder itemBuilder,
  15. bool addSemanticIndexes = true,
  16. double? cacheExtent,
  17. List<Widget> children = const <Widget>[],
  18. int? semanticChildCount,
  19. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  20. ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  21. String? restorationId,
  22. Clip clipBehavior = Clip.hardEdge,
  23. dynamic onStart()?,
  24. dynamic onMedium()?,
  25. dynamic onEnd()?,
})

Implementation

SmartListViewBuilder({
  Key? key,
  super.scrollDirection,
  super.reverse,
  super.primary,
  super.physics,
  super.shrinkWrap,
  super.padding,
  super.itemExtent,
  super.prototypeItem,
  super.controller,
  this.addAutomaticKeepAlives = true,
  this.addRepaintBoundaries = true,
  this.itemCount,
  required this.itemBuilder,
  this.addSemanticIndexes = true,
  super.cacheExtent,
  super.children,
  super.semanticChildCount,
  super.dragStartBehavior,
  super.keyboardDismissBehavior,
  super.restorationId,
  super.clipBehavior,
  this.onStart,
  this.onMedium,
  this.onEnd,
}) : super(key: key);