printBarcodeWithText method

Future<bool> printBarcodeWithText(
  1. String barcodeData,
  2. String textData, {
  3. double? x,
  4. double? y,
  5. int? barcodeHeight,
  6. int? textFont,
  7. double? textScale,
})

Print barcode with text below it in one operation

Implementation

Future<bool> printBarcodeWithText(
  String barcodeData,
  String textData, {
  double? x,
  double? y,
  int? barcodeHeight,
  int? textFont,
  double? textScale,
}) {
  throw UnimplementedError('printBarcodeWithText() has not been implemented.');
}