CustomRefresh constructor

const CustomRefresh({
  1. required Widget child,
  2. required EasyRefreshController controller,
  3. Key? key,
  4. FutureOr onRefresh()?,
  5. FutureOr onLoad()?,
  6. Color? iconColor,
})

CustomRefresh 下拉刷新组件

Implementation

const CustomRefresh({
  required this.child,
  required this.controller,
  super.key,
  this.onRefresh,
  this.onLoad,
  this.iconColor,
});