getText method
Implementation
String getText(String data) {
final StringBuffer result = StringBuffer();
for (final BarcodeElement elem in makeText(data, 200, 200, 10, 5, 10)) {
if (elem is BarcodeText) {
result.write(elem.text);
}
}
return result.toString();
}