PieChart constructor

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

Implementation

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