setLcdLogo static method

Future<void> setLcdLogo(
  1. Uint8List img
)

Set default logo for customer display LCD It is recommended not to change the logo frequently. The number of modifications is less than 5000 times PrinterService version >= v1.7.9

Implementation

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