BasicAppRefresher constructor

const BasicAppRefresher({
  1. required RefreshController controller,
  2. Widget? child,
  3. VoidCallback? onRefresh,
  4. VoidCallback? onLoading,
  5. OnTwoLevel? onTwoLevel,
  6. DragStartBehavior? dragStartBehavior,
  7. bool? primary,
  8. double? cacheExtent,
  9. int? semanticChildCount,
  10. bool? reverse,
  11. ScrollPhysics? physics,
  12. Axis? scrollDirection,
  13. ScrollController? scrollController,
  14. String? canLoadingText,
  15. String? failedText,
  16. String? idleText,
  17. String? loadingText,
  18. String? noDataText,
  19. Key? key,
})

Implementation

const BasicAppRefresher({
  required this.controller,
  this.child,
  this.onRefresh,
  this.onLoading,
  this.onTwoLevel,
  this.dragStartBehavior,
  this.primary,
  this.cacheExtent,
  this.semanticChildCount,
  this.reverse,
  this.physics,
  this.scrollDirection,
  this.scrollController,
  this.canLoadingText,
  this.failedText,
  this.idleText,
  this.loadingText,
  this.noDataText,
  Key? key,
})  : builder = null,
      super(key: key);