YRefreshContainer constructor

YRefreshContainer({
  1. required Widget child,
  2. dynamic onRefresh()?,
  3. ScrollController? scrollController,
  4. Header? header,
  5. Footer? footer,
  6. dynamic onLoadMore()?,
  7. bool bottomBouncing = true,
  8. bool scrollbar = true,
})

Implementation

YRefreshContainer({
  required this.child,
  this.onRefresh,
  this.scrollController,
  this.header,
  this.footer,
  this.onLoadMore,
  this.bottomBouncing = true,
  this.scrollbar = true,
});