BarcodeBar constructor
const
BarcodeBar({})
Create a rectangle drawing operation to draw a white or black unit
Implementation
const BarcodeBar({
required double left,
required double top,
required double width,
required double height,
required this.black,
}) : super(
left: left,
top: top,
width: width,
height: height,
);