TProgress.circular constructor

const TProgress.circular({
  1. Key? key,
  2. required double value,
  3. Color? valueColor,
  4. double size = 120,
  5. double strokeWidth = 6.0,
  6. Color? color,
  7. Color? backgroundColor,
})

Implementation

const TProgress.circular({
  super.key,
  required this.value,
  this.valueColor,
  this.size = 120,
  this.strokeWidth = 6.0,
  this.color,
  this.backgroundColor,
}) : type = TProgressType.circular;