showLcdImage static method

Future<void> showLcdImage(
  1. Uint8List img
)

Show bitmap in customer display LCD PrinterService version >= v1.5.9 only support black-white bitmap PrinterService version >= v1.7.6 support colored bitmap automatic conversion

Implementation

static Future<void> showLcdImage(Uint8List img) {
  return NyxPrinterPlatform.instance.showLcdImage(img);
}