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