printBitmap method

Future<void> printBitmap(
  1. Uint8List bytes
)

Print Image Bitmap

Accept Uint8List bitmap wrap in bytes.

Implementation

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