makeText method
Implementation
@override
Iterable<BarcodeElement> makeText(
String data,
double width,
double height,
double fontHeight,
double textPadding,
double lineWidth,
) {
data = adaptData(data, true).replaceAll(RegExp("[^ -\u{7f}]"), " ").trim();
return super.makeText(
data,
width,
height,
fontHeight,
textPadding,
lineWidth,
);
}