A_Bar2d_PDF417 method

int A_Bar2d_PDF417(
  1. int x,
  2. int y,
  3. int narrow,
  4. int width,
  5. int normal,
  6. int security,
  7. int aspect,
  8. int row,
  9. int column,
  10. int mode,
  11. int numeric,
  12. String data,
)

Implementation

int A_Bar2d_PDF417(
  int x,
  int y,
  int narrow,
  int width,
  int normal,
  int security,
  int aspect,
  int row,
  int column,
  int mode,
  int numeric,
  String data,
) {
  return _A_Bar2d_PDF417(
    x,
    y,
    narrow,
    width,
    normal,
    security,
    aspect,
    row,
    column,
    mode,
    numeric,
    data.toNativeUtf8().cast<ffi.Int8>(),
  );
}