RefreshGeneralFrameworkWidget constructor

const RefreshGeneralFrameworkWidget({
  1. Key? key,
  2. required Widget child,
  3. required bool isLastPage,
  4. required Future<void> onRefreshTop(),
  5. required Future<void> onRefreshBottom(),
  6. Widget? noMoreWidget,
  7. Widget? loadingWidget,
  8. EdgeInsetsGeometry? padding,
  9. ScrollController? scrollController,
})

Implementation

const RefreshGeneralFrameworkWidget({
  super.key,
  required this.child,
  required this.isLastPage,
  required this.onRefreshTop,
  required this.onRefreshBottom,
  this.noMoreWidget,
  this.loadingWidget,
  this.padding,
  this.scrollController,
});