printBytes method

Future<void> printBytes(
  1. Uint8List bytes
)

Print raw bytes

Accept bytes with type Uint8List and send that raw bytes to printer.

Implementation

Future<void> printBytes(Uint8List bytes) async {
  IminPrinterPlatform.instance.printBytes(bytes);
}