BaseRefresh.custom constructor

const BaseRefresh.custom({
  1. Key? key,
  2. EasyRefreshController? controller,
  3. ScrollController? scrollController,
  4. Header? header,
  5. bool firstRefresh = false,
  6. Widget? firstRefreshWidget,
  7. OnRefreshCallback? onRefresh,
  8. Footer? footer,
  9. OnLoadCallback? onLoad,
  10. Widget? emptyWidget,
  11. List<Widget>? slivers,
})

Implementation

const BaseRefresh.custom(
    {Key? key,
    this.controller,
    this.scrollController,
    this.header,
    this.firstRefresh = false,
    this.firstRefreshWidget,
    this.onRefresh,
    this.footer,
    this.onLoad,
    this.emptyWidget,
    this.slivers})
    : this.child = null,
      super(key: key);