pagingView property

Stream<PagingViewInfo<ITEM>> pagingView

Implementation

Stream<PagingViewInfo<ITEM>> get pagingView => Rx.combineLatest3<EmptyState, List<ITEM>?, bool, PagingViewInfo<ITEM>>(
  pagingEmptyState, listItems, isHasNext, (emptyState, listItems, isHasNext) => PagingViewInfo(emptyState, listItems, isHasNext)
).distinct();