BarChartPainter constructor

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

Implementation

BarChartPainter({
  required this.data,
  required this.animation,
  this.colorPalette,
  this.showValues = true,
});