TxLinearGradientProgressIndicator constructor

const TxLinearGradientProgressIndicator({
  1. Key? key,
  2. double? value,
  3. Color? backgroundColor,
  4. LinearGradient? gradient,
  5. Animation<LinearGradient?>? valueColor,
  6. double? minHeight,
  7. String? semanticsLabel,
  8. String? semanticsValue,
  9. Radius? radius,
  10. bool? showValueText,
  11. TextStyle? textStyle,
})

Implementation

const TxLinearGradientProgressIndicator({
  super.key,
  this.value,
  this.backgroundColor,
  this.gradient,
  this.valueColor,
  this.minHeight,
  this.semanticsLabel,
  this.semanticsValue,
  this.radius,
  this.showValueText,
  this.textStyle,
}) : assert(minHeight == null || minHeight > 0);