TxGradientCircularProgressIndicator constructor

const TxGradientCircularProgressIndicator({
  1. double? radius,
  2. List<Color>? colors,
  3. Key? key,
  4. double strokeWidth = 2.0,
  5. List<double>? stops,
  6. bool strokeCapRound = false,
  7. Color? backgroundColor,
  8. double totalAngle = 2 * math.pi,
  9. double? value,
})

Implementation

const TxGradientCircularProgressIndicator({
  this.radius,
  this.colors,
  super.key,
  this.strokeWidth = 2.0,
  this.stops,
  this.strokeCapRound = false,
  this.backgroundColor,
  this.totalAngle = 2 * math.pi,
  this.value,
});