BarChart constructor
const
BarChart({})
Implementation
const BarChart({
required this.data,
this.orientation = BarOrientation.vertical,
this.min,
this.max,
this.showLabels = true,
this.showValues = false,
this.barWidth = 2,
this.gap = 1,
this.defaultBarStyle,
this.labelStyle,
this.valueStyle,
this.formatValue,
}) : assert(barWidth > 0 && gap >= 0);