class IndividualBar {
final int x;
final double y;
IndividualBar({
required this.x,
required this.y
});
}