YRefreshStaticListView constructor

YRefreshStaticListView({
  1. required List<Widget> children,
  2. dynamic onRefresh()?,
  3. ScrollController? scrollController,
  4. Header? header,
  5. Footer? footer,
  6. dynamic onLoadMore()?,
  7. bool bottomBouncing = true,
  8. bool scrollbar = true,
  9. EdgeInsets padding = EdgeInsets.zero,
})

Implementation

YRefreshStaticListView({
  required this.children,
  this.onRefresh,
  this.scrollController,
  this.header,
  this.footer,
  this.onLoadMore,
  this.bottomBouncing = true,
  this.scrollbar = true,
  this.padding = EdgeInsets.zero,
});