BasicAppRefresher.builder constructor

const BasicAppRefresher.builder({
  1. Key? key,
  2. required RefreshController controller,
  3. required RefresherBuilder? builder,
  4. VoidCallback? onRefresh,
  5. VoidCallback? onLoading,
  6. OnTwoLevel? onTwoLevel,
  7. String? canLoadingText,
  8. String? failedText,
  9. String? idleText,
  10. String? loadingText,
  11. String? noDataText,
})

Implementation

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