A_Print_Form method

int A_Print_Form(
  1. int width,
  2. int height,
  3. int copies,
  4. int amount,
  5. String form_name,
)

Implementation

int A_Print_Form(
  int width,
  int height,
  int copies,
  int amount,
  String form_name,
) {
  return _A_Print_Form(
    width,
    height,
    copies,
    amount,
    form_name.toNativeUtf8().cast<ffi.Int8>(),
  );
}