PieChart constructor

const PieChart({
  1. Key? key,
  2. required ChartConfig config,
  3. bool isDonut = false,
  4. int? explodedIndex,
  5. ChartTheme? theme,
})

Implementation

const PieChart({
  super.key,
  required this.config,
  this.isDonut = false,
  this.explodedIndex,
  this.theme,
});