Feed constructor
const
Feed({
- Key? key,
- required FeedLoader loader,
- FeedController? controller,
- int? lengthFactor,
- int? initialLength,
- FeedBuilder? childBuilder,
- IndexedFeedBuilder? indexedBuilder,
- Widget? placeholder,
- Widget? loading,
- bool? disableScroll,
- RetrievalFunction? getItemID,
- WidgetWrapper? wrapper,
- ScrollController? scrollController,
- bool compact = false,
- bool initiallyLoad = true,
- List? pinnedItems,
- bool reverse = false,
- int? renderCount,
- bool usePlaceholder = true,
- bool usePrimaryScrollController = false,
- 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);