cancelUserDefinedCharacters method

ESCPOS cancelUserDefinedCharacters(
  1. int n
)

Implementation

ESCPOS cancelUserDefinedCharacters(int n) {
  // Create a Uint8List containing the byte data
  _data += Uint8List.fromList([27, 63, n]);
  return this;
}