setPageSize method

ESCPOS setPageSize(
  1. bool is80mm
)

Implementation

ESCPOS setPageSize(bool is80mm) {
  _data += is80mm ? [29, 87, 0x80, 0x01] : [29, 87, 0x40, 0x02];
  return this;
}