makeText method
Implementation
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,
);
}