printBitmap method

Future<int?> printBitmap(
  1. Uint8List bytes
)

Prints a bitmap image provided as a byte array.

bytes The byte data representing the image to print.

Returns an int representing the result of the print operation, or null if it fails.

Implementation

Future<int?> printBitmap(Uint8List bytes) {
  return instance.printBitmap(bytes);
}