cut method

CustomPrintJob cut({
  1. PosCutMode mode = PosCutMode.full,
})

Papier abschneiden.

Implementation

CustomPrintJob cut({PosCutMode mode = PosCutMode.full}) {
  _ops.add((gen) => gen.cut(mode: mode));
  return this;
}