selectOrCancelCustomChar method

ESCPOS selectOrCancelCustomChar(
  1. int n
)

Implementation

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