AdvancedProgress constructor

AdvancedProgress({
  1. Key? key,
  2. double? primaryValue,
  3. double? secondaryValue,
  4. double secondaryWidth = 10.0,
  5. required double radius,
  6. double startAngle = 120.0,
  7. double maxDegrees = 300.0,
  8. double progressGap = 0.0,
  9. int division = 10,
  10. int? levelAmount,
  11. double levelLowWidth = 1.0,
  12. double levelLowHeight = 8.0,
  13. double levelHighWidth = 2.0,
  14. double levelHighHeight = 16.0,
  15. bool levelHighBeginEnd = false,
  16. Color? primaryColor,
  17. Color? secondaryColor,
  18. Color? tertiaryColor,
  19. Widget? child,
})

Implementation

AdvancedProgress({
  Key? key,
  this.primaryValue,
  this.secondaryValue,
  this.secondaryWidth = 10.0,
  required this.radius,
  this.startAngle = 120.0,
  this.maxDegrees = 300.0,
  this.progressGap = 0.0,
  this.division = 10,
  this.levelAmount,
  this.levelLowWidth = 1.0,
  this.levelLowHeight = 8.0,
  this.levelHighWidth = 2.0,
  this.levelHighHeight = 16.0,
  this.levelHighBeginEnd = false,
  this.primaryColor,
  this.secondaryColor,
  this.tertiaryColor,
  this.child,
}) : super(key: key);