DistributionChart constructor

const DistributionChart({
  1. Key? key,
  2. required List<DistributionSegment> segments,
  3. double height = 240,
  4. double donutWidth = 32,
})

Implementation

const DistributionChart({
  super.key,
  required this.segments,
  this.height = 240,
  this.donutWidth = 32,
});