BarGraphYLabelPainter constructor Null safety

BarGraphYLabelPainter(
  1. {List<BarDataDay>? barItemsDay,
  2. bool isBiDirectional = false,
  3. bool yLabelVisible = true}
)

Implementation

BarGraphYLabelPainter({
  this.barItemsDay,
  this.isBiDirectional = false,
  this.yLabelVisible = true,
}) : super(
        barItemsDay: barItemsDay,
        isBiDirectional: isBiDirectional,
        yLabelVisible: yLabelVisible,
      );