FeedListView constructor

const FeedListView({
  1. Key? key,
  2. bool usePrimaryScrollController = false,
  3. bool? disableScroll = false,
  4. bool compact = false,
  5. bool reverse = false,
  6. dynamic onLoad()?,
  7. required Widget builder(
    1. BuildContext context,
    2. int i,
    3. List items
    ),
  8. required ScrollController controller,
  9. double? footerHeight,
  10. WidgetWrapper? wrapper,
  11. Widget? loading,
  12. FeedGridViewDelegate? gridDelegate,
  13. ScrollPhysics? physics,
})

Implementation

const FeedListView({
  Key? key,
  this.usePrimaryScrollController = false,
  this.disableScroll = false,
  this.compact = false,
  this.reverse = false,
  this.onLoad,
  required this.builder,
  required this.controller,
  this.footerHeight,
  this.wrapper,
  this.loading,
  this.gridDelegate,
  this.physics
}) : super(key: key);