ProgressIndicatorOptions.refresh constructor

const ProgressIndicatorOptions.refresh({
  1. double? width,
  2. double? height,
  3. double? value,
  4. Color? color,
  5. Animation<Color?>? valueColor,
  6. Color? backgroundColor,
  7. String? semanticsLabel,
  8. String? semanticsValue,
  9. double strokeWidth = 4,
  10. double strokeAlign = 0,
  11. StrokeCap? strokeCap,
  12. double elevation = 2.0,
  13. EdgeInsetsGeometry indicatorMargin = const EdgeInsets.all(4.0),
  14. EdgeInsetsGeometry indicatorPadding = const EdgeInsets.all(12.0),
})

Implementation

const ProgressIndicatorOptions.refresh({
  this.width,
  this.height,
  this.value,
  this.color,
  this.valueColor,
  this.backgroundColor,
  this.semanticsLabel,
  this.semanticsValue,
  this.strokeWidth = 4,
  this.strokeAlign = 0,
  this.strokeCap,
  this.elevation = 2.0,
  this.indicatorMargin = const EdgeInsets.all(4.0),
  this.indicatorPadding = const EdgeInsets.all(12.0),
})  : style = ProgressIndicatorStyle.refresh,
      minHeight = null,
      borderRadius = BorderRadius.zero;