Feed constructor

const Feed({
  1. Key? key,
  2. required FeedLoader loader,
  3. FeedController? controller,
  4. int? lengthFactor,
  5. int? initialLength,
  6. FeedBuilder? childBuilder,
  7. IndexedFeedBuilder? indexedBuilder,
  8. double? footerHeight,
  9. Widget? placeholder,
  10. Widget? loading,
  11. bool? disableScroll,
  12. RetrievalFunction? getItemID,
  13. WidgetWrapper? wrapper,
  14. ScrollController? scrollController,
  15. bool compact = false,
  16. bool initiallyLoad = true,
  17. List? pinnedItems,
  18. bool reverse = false,
  19. int? renderCount,
  20. bool usePlaceholder = true,
  21. bool usePrimaryScrollController = false,
  22. ScrollPhysics? physics,
})

Implementation

const Feed(
    {Key? key,
    required this.loader,
    this.controller,
    this.lengthFactor,
    this.initialLength,
    this.childBuilder,
    this.indexedBuilder,
    this.footerHeight,
    this.placeholder,
    this.loading,
    this.disableScroll,
    this.getItemID,
    this.wrapper,
    this.scrollController,
    this.compact = false,
    this.initiallyLoad = true,
    this.pinnedItems,
    this.reverse = false,
    this.renderCount,
    this.usePlaceholder = true,
    this.usePrimaryScrollController = false,
    this.physics
  })  : super(key: key);