RefreshSliverWidget constructor

const RefreshSliverWidget({
  1. Key? key,
  2. List<Widget>? slivers,
  3. bool? enableRefresh,
  4. bool? enableLoad,
  5. OnRefreshCall? onRefresh,
  6. OnLoadCall? onLoad,
  7. Widget? emptyWidget,
  8. bool? isVisibilityFirstLoadWidget,
  9. Footer? footer,
  10. RefreshInitCall? initCall,
  11. ScrollController? scrollController,
  12. OnFinishLoadCall? finishLoadCall,
  13. Widget? loadIndicatorWidget,
})

Implementation

const RefreshSliverWidget(
    {Key? key,
    this.slivers,
    this.enableRefresh,
    this.enableLoad,
    this.onRefresh,
    this.onLoad,
    this.emptyWidget,
    this.isVisibilityFirstLoadWidget,
    this.footer,
    this.initCall,
    this.scrollController,
    this.finishLoadCall,
    this.loadIndicatorWidget})
    : super(key: key);