makeText method
Stream the text operations required to draw the barcode texts. This is automatically called by make
Implementation
@protected
Iterable<BarcodeElement> makeText(
String data,
double width,
double height,
double fontHeight,
double textPadding,
double lineWidth,
) sync* {
yield BarcodeText(
left: 0,
top: height - fontHeight,
width: width,
height: fontHeight,
text: data,
align: BarcodeTextAlign.center,
);
}