printBarcode method

Future<void> printBarcode(
  1. String content, {
  2. PBarcodeType type = PBarcodeType.code39,
  3. 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.');
}