RefreshControl constructor

const RefreshControl({
  1. Key? key,
  2. Widget? child,
  3. Future<RefreshState> onRefresh()?,
  4. Future<RefreshState> onLoading()?,
  5. bool enablePullUp = false,
})

Implementation

const RefreshControl({
  Key? key,
  this.child,
  this.onRefresh,
  this.onLoading,
  this.enablePullUp = false,
}) : super(key: key);