CircularGadgetRenderObject constructor

const CircularGadgetRenderObject({
  1. Key? key,
  2. required double strokeWidth,
  3. required Color strokeColor,
  4. required Color strokeValueColor,
  5. required Color centerColor,
  6. required double min,
  7. required double max,
  8. required double value,
})

Implementation

const CircularGadgetRenderObject({
  super.key,
  required this.strokeWidth,
  required this.strokeColor,
  required this.strokeValueColor,
  required this.centerColor,
  required this.min,
  required this.max,
  required this.value,
});