SmartRefresherCustom constructor

const SmartRefresherCustom({
  1. Key? key,
  2. required Widget child,
  3. required RefreshController controller,
  4. VoidCallback? onRefresh,
  5. VoidCallback? onLoading,
  6. bool enablePullDown = true,
  7. bool enablePullUp = true,
  8. bool enableTwoLevel = false,
})

Implementation

const SmartRefresherCustom({super.key,
  required this.child,
  required this.controller,
  this.onRefresh,
  this.onLoading,
  this.enablePullDown= true,
  this.enablePullUp= true,
  this.enableTwoLevel= false,
});