rawByte method

ESCPOS rawByte(
  1. List<int> bytes
)

Implementation

ESCPOS rawByte(List<int> bytes) {
  _data += Uint8List.fromList(bytes);
  return this;
}