printBarcode method
Future<void>
printBarcode(
- String content, {
- PBarcodeType type = PBarcodeType.code39,
- PStringEncoding encoding = PStringEncoding.utf8,
Prints a barcode with the given content.
typeType of barcode.encodingString encoding used.
Implementation
Future<void> printBarcode(
String content, {
PBarcodeType type = PBarcodeType.code39,
PStringEncoding encoding = PStringEncoding.utf8,
}) {
throw UnimplementedError('printBarcode() has not been implemented.');
}