PlexProgressRing constructor

const PlexProgressRing({
  1. Key? key,
  2. required double value,
  3. double max = 100,
  4. double size = 132,
  5. double thickness = 12,
  6. String? label,
  7. String? caption,
  8. String? display,
})

Implementation

const PlexProgressRing({
  super.key,
  required this.value,
  this.max = 100,
  this.size = 132,
  this.thickness = 12,
  this.label,
  this.caption,
  this.display,
});