PieChartWidget constructor

const PieChartWidget({
  1. Key? key,
  2. required Map<String, double> chartConfig,
  3. required String title,
  4. bool animate = true,
})

Implementation

const PieChartWidget({
  super.key,
  required this.chartConfig,
  required this.title,
  this.animate = true,
});