DonutChartPainter constructor

DonutChartPainter({
  1. required List<AppChartData> data,
  2. required double animation,
  3. List<Color>? colorPalette,
  4. bool showLabels = true,
})

Implementation

DonutChartPainter({
  required this.data,
  required this.animation,
  this.colorPalette,
  this.showLabels = true,
});