SimpleStackCircularProgressBar constructor

const SimpleStackCircularProgressBar({
  1. Key? key,
  2. double size = 100,
  3. double startAngle = 0,
  4. double maxValue = 100,
  5. double progressStrokeWidth = 15,
  6. double strokeSpacePadding = 10,
  7. double backStrokeWidth = 15,
  8. required List<SimpleBarValue> bars,
  9. Color backColor = const Color(0xFF16262D),
})

Animate pogress time

Implementation

const SimpleStackCircularProgressBar({
  super.key,
  this.size = 100,
  this.startAngle = 0,
  this.maxValue = 100,
  this.progressStrokeWidth = 15,
  this.strokeSpacePadding = 10,
  this.backStrokeWidth = 15,
  required this.bars,
  this.backColor = const Color(0xFF16262D),
});