newCustomRollPaper static method

CustomPaperInfo newCustomRollPaper(
  1. Model printerModel,
  2. Unit unit,
  3. double tapeWidth,
  4. double rightMargin,
  5. double leftMargin,
  6. double topMargin,
)

Implementation

static CustomPaperInfo newCustomRollPaper(Model printerModel, Unit unit, double tapeWidth, double rightMargin, double leftMargin, double topMargin) {
  return new CustomPaperInfo._internal(printerModel, PaperKind.ROLL, unit, tapeWidth, 0.0, rightMargin, leftMargin, topMargin, 0.0, 0.0, 0.0, 0.0);
}