RallyPieChart constructor

const RallyPieChart({
  1. Key? key,
  2. String? heroLabel,
  3. double? heroAmount,
  4. double? wholeAmount,
  5. List<RallyPieChartSegment>? segments,
})

Implementation

const RallyPieChart({
  Key? key,
  this.heroLabel,
  this.heroAmount,
  this.wholeAmount,
  this.segments,
}) : super(key: key);