ListViewBuilderOptions constructor

ListViewBuilderOptions({
  1. Axis? scrollDirection,
  2. bool? reverse,
  3. ScrollController? controller,
  4. bool? primary,
  5. ScrollPhysics? physics,
  6. bool? shrinkWrap,
  7. EdgeInsetsGeometry? padding,
  8. double? itemExtent,
  9. Widget? prototypeItem,
  10. ChildIndexGetter? findChildIndexCallback,
  11. bool? addAutomaticKeepAlives,
  12. bool? addRepaintBoundaries,
  13. bool? addSemanticIndexes,
  14. double? cacheExtent,
  15. int? semanticChildCount,
  16. DragStartBehavior? dragStartBehavior,
  17. ScrollViewKeyboardDismissBehavior? keyboardDismissBehavior,
  18. String? restorationId,
  19. Clip? clipBehavior,
})

Constructor of ListViewBuilderOptions.

Implementation

ListViewBuilderOptions({
  this.scrollDirection,
  this.reverse,
  this.controller,
  this.primary,
  this.physics,
  this.shrinkWrap,
  this.padding,
  this.itemExtent,
  this.prototypeItem,
  this.findChildIndexCallback,
  this.addAutomaticKeepAlives,
  this.addRepaintBoundaries,
  this.addSemanticIndexes,
  this.cacheExtent,
  this.semanticChildCount,
  this.dragStartBehavior,
  this.keyboardDismissBehavior,
  this.restorationId,
  this.clipBehavior,
});