SimpleBar constructor
SimpleBar({
- required num xValue,
- required BarData yValue,
- BarDataStyle? style,
- double padding = 10,
Defines a Simple singular Bar with a Single Y-Value
See Also: BarGroup
Implementation
SimpleBar({
required super.xValue,
required this.yValue,
super.style,
super.padding,
});