PullToRefreshLoadingIndicator constructor

const PullToRefreshLoadingIndicator({
  1. Key? key,
  2. required ValueListenable<PullToRefreshStates> states,
  3. List<RoundedPolygon>? determinateIndicatorPolygons,
  4. List<RoundedPolygon>? indeterminateIndicatorPolygons,
  5. OutlinedBorder? containerShape,
  6. Color? containerColor,
  7. BorderSide? containerOutline,
  8. Color? activeIndicatorColor,
  9. BorderSide? activeIndicatorOutline,
  10. LoadingIndicatorForEachPolygon forEachPolygon = LoadingIndicatorHelper.defaultForEachPolygon,
})

Implementation

const PullToRefreshLoadingIndicator({
  super.key,
  required this.states,
  this.determinateIndicatorPolygons,
  this.indeterminateIndicatorPolygons,
  this.containerShape,
  this.containerColor,
  this.containerOutline,
  this.activeIndicatorColor,
  this.activeIndicatorOutline,
  this.forEachPolygon = LoadingIndicatorHelper.defaultForEachPolygon,
});