BaseCustomListScrollView<T> constructor

const BaseCustomListScrollView<T>({
  1. required PagingController<int, T> pagingController,
  2. required dynamic itemBuilder(
    1. T,
    2. int
    ),
  3. required AutoScrollController? controller,
  4. required VoidCallback onRefresh,
  5. required RefreshController refreshController,
  6. bool? isPrimary = true,
  7. bool? isController = true,
  8. bool? isLastPage = false,
  9. String? message,
  10. Key? key,
})

Implementation

const BaseCustomListScrollView({
  required this.pagingController,
  required this.itemBuilder,
  required this.controller,
  required this.onRefresh,
  required this.refreshController,
  this.isPrimary = true,
  this.isController = true,
  this.isLastPage = false,
  this.message,
  Key? key,
}) : super(key: key);