AnimatedRefreshProgressIndicator constructor

const AnimatedRefreshProgressIndicator({
  1. Key? key,
  2. required Duration duration,
  3. Curve curve = Curves.linear,
  4. VoidCallback? onEnd,
  5. double? value,
  6. Color? color,
  7. Color? backgroundColor,
  8. Animation<Color?>? valueColor,
  9. double strokeWidth = 2.5,
  10. double strokeAlign = 0.0,
  11. StrokeCap? strokeCap,
  12. String? semanticsLabel,
  13. String? semanticsValue,
  14. double elevation = 2.0,
  15. EdgeInsetsGeometry indicatorMargin = const EdgeInsets.all(4.0),
  16. EdgeInsetsGeometry indicatorPadding = const EdgeInsets.all(12.0),
})

Implementation

const AnimatedRefreshProgressIndicator({
  super.key,
  required super.duration,
  super.curve,
  super.onEnd,
  this.value,
  this.color,
  this.backgroundColor,
  this.valueColor,
  this.strokeWidth = 2.5,
  this.strokeAlign = 0.0,
  this.strokeCap,
  this.semanticsLabel,
  this.semanticsValue,
  this.elevation = 2.0,
  this.indicatorMargin = const EdgeInsets.all(4.0),
  this.indicatorPadding = const EdgeInsets.all(12.0),
});