ProgressIndicatorOptions.circular constructor

const ProgressIndicatorOptions.circular({
  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,
})

Implementation

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