reversePrinterBufferArea method Null safety

void reversePrinterBufferArea(
  1. int x,
  2. int y,
  3. int width,
  4. int height
)

反转打印机缓冲区部分区域的数据(区域内数据取反)

x 起点X坐标 y 起点Y坐标 width 宽度 height 高度

Implementation

void reversePrinterBufferArea(int x, int y, int width, int height) {
  addString("REVERSE $x,$y,$width,$height\r\n");
}