prnBarcode method

int prnBarcode(
  1. int x,
  2. int y,
  3. int ori,
  4. String type,
  5. int narrow,
  6. int width,
  7. int height,
  8. String mode,
  9. int numeric,
  10. String data,
)

Implementation

int prnBarcode(int x, int y, int ori, String type, int narrow, int width,
        int height, String mode, int numeric, String data) =>
    _prnBarcode(x, y, ori, type.codeUnitAt(0), narrow, width, height,
        mode.codeUnitAt(0), numeric, data.toNativeUtf8());