PaginationListWidget constructor

const PaginationListWidget(
  1. {Key? key,
  2. required List list,
  3. required dynamic listItemWidget(
    1. int
    ),
  4. required RefreshController controller,
  5. dynamic onRefresh(
      )?,
    1. dynamic onLoading(
        )?,
      1. EdgeInsets? padding,
      2. bool enablePullDown = true,
      3. 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,
      });