Arc constructor

Arc({
  1. Key? key,
  2. bool showThumb = true,
  3. required Widget centerWidget,
  4. required double initialValue,
  5. required double maxValue,
  6. required ValueChanged<double> onFinalSetPoint,
  7. Color? color,
})

Implementation

Arc({
  Key? key,
  this.showThumb = true,
  required this.centerWidget,
  required this.initialValue,
  required this.maxValue,
  required this.onFinalSetPoint,
  this.color,
}) : super(key: key);