printBarcode method

Future<bool> printBarcode(
  1. String content, {
  2. int x = 100,
  3. int y = 50,
  4. int height = 80,
  5. String type = '128',
})

Print barcode.

Implementation

Future<bool> printBarcode(
  String content, {
  int x = 100,
  int y = 50,
  int height = 80,
  String type = '128',
}) {
  throw UnimplementedError('printBarcode() has not been implemented.');
}