RefreshLoadmore constructor

const RefreshLoadmore({
  1. Key? key,
  2. required Widget child,
  3. required bool isLastPage,
  4. Future<void> onRefresh()?,
  5. Future<void> onLoadmore()?,
  6. Widget? noMoreWidget,
  7. ScrollController? scrollController,
})

Implementation

const RefreshLoadmore({
  Key? key,
  required this.child,
  required this.isLastPage,
  this.onRefresh,
  this.onLoadmore,
  this.noMoreWidget,
  this.scrollController,
}) : super(key: key);