CellLinearProgressIndicator constructor

const CellLinearProgressIndicator({
  1. Key? key,
  2. ValueCell<double?>? value,
  3. ValueCell<Color?>? backgroundColor,
  4. ValueCell<Color?>? color,
  5. ValueCell<double?>? minHeight,
  6. ValueCell<String?>? semanticsLabel,
  7. ValueCell<String?>? semanticsValue,
  8. ValueCell<BorderRadiusGeometry> borderRadius = const ValueCell.value(BorderRadius.zero),
})

Implementation

const CellLinearProgressIndicator({
  super.key,
  this.value,
  this.backgroundColor,
  this.color,
  this.minHeight,
  this.semanticsLabel,
  this.semanticsValue,
  this.borderRadius = const ValueCell.value(BorderRadius.zero),
});