RefreshView constructor

RefreshView({
  1. required Widget child,
  2. dynamic onRefresh()?,
  3. dynamic onLoading()?,
  4. bool hasNextPage()?,
  5. BaseController? dataController,
  6. String? emptyMsg,
  7. Widget? emptyIcon,
  8. bool isShowEmptyNoMoreTips = true,
})

Implementation

RefreshView({
  required this.child,
  this.onRefresh,
  this.onLoading,
  this.hasNextPage,
  this.dataController,
  this.emptyMsg,
  this.emptyIcon,
  this.isShowEmptyNoMoreTips = true,
});