SimpleBar constructor

SimpleBar({
  1. required num xValue,
  2. required BarData yValue,
  3. BarDataStyle? style,
  4. 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,
});