PaginationListWidget constructor

const PaginationListWidget({
  1. Key? key,
  2. required List list,
  3. required dynamic listItemWidget(
    1. int
    ),
  4. required RefreshController controller,
  5. dynamic onRefresh()?,
  6. dynamic onLoading()?,
  7. EdgeInsets? padding,
  8. bool enablePullDown = true,
  9. bool isLoading = false,
})

Implementation

const PaginationListWidget({
  super.key,
  required this.list,
  required this.listItemWidget,
  required this.controller,
  this.onRefresh,
  this.onLoading,
  this.padding,
  this.enablePullDown = true,
  this.isLoading = false,
});