collectiveState property
InitialFeedState<T>
get
collectiveState
Get the collective state of items from the feed
Implementation
InitialFeedState<T> get collectiveState => InitialFeedState(
items: _state!.tower.state.items.where((element) => element.item1 != null).map((e) => e.item1).toList(),
pageToken: _state!.tower.state.pageToken,
hasMore: _state!.tower.state.hasMore
);