CellCircularProgressIndicator constructor

const CellCircularProgressIndicator({
  1. Key? key,
  2. ValueCell<double?>? value,
  3. ValueCell<Color?>? backgroundColor,
  4. ValueCell<Color?>? color,
  5. ValueCell<Animation<Color?>?>? valueColor,
  6. ValueCell<double> strokeWidth = const ValueCell.value(4.0),
  7. ValueCell<double> strokeAlign = const ValueCell.value(0.0),
  8. ValueCell<String?>? semanticsLabel,
  9. ValueCell<String?>? semanticsValue,
  10. ValueCell<StrokeCap?>? strokeCap,
})

Implementation

const CellCircularProgressIndicator({
  super.key,
  this.value,
  this.backgroundColor,
  this.color,
  this.valueColor,
  this.strokeWidth = const ValueCell.value(4.0),
  this.strokeAlign = const ValueCell.value(0.0),
  this.semanticsLabel,
  this.semanticsValue,
  this.strokeCap,
});