BarGroup constructor

BarGroup({
  1. required num xValue,
  2. BarDataStyle? style,
  3. double padding = 10,
})

Defines the structure of a Group of Bars.

Holds the X-Value, Labels and Styling.

Implementation

BarGroup({required this.xValue, this.style, this.padding = 10});