WisePullToRefresh constructor

WisePullToRefresh({
  1. required Widget child,
  2. bool enablePullUp = false,
  3. bool enablePullDown = true,
  4. dynamic onRefresh()?,
  5. Future<bool> onLoading()?,
})

Implementation

WisePullToRefresh({
  required this.child,
  this.enablePullUp = false,
  this.enablePullDown = true,
  this.onRefresh,
  this.onLoading,
});