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