BarChart constructor

BarChart({
  1. required double size,
  2. required List<double> items,
  3. Color? color,
  4. double? fontSize,
  5. bool? showValues,
  6. FontWeight? fontWeight,
})

Implementation

BarChart(
    {required this.size,
    required this.items,
    this.color,
    this.fontSize,
    this.showValues,
    this.fontWeight});