sendImageLCD static method
Sends an image to the LCD screen.
image
: The image data as a Uint8List.
Returns a String message from the printer if successful, or null
otherwise.
Implementation
static Future<String?> sendImageLCD({required Uint8List image}) async {
return await SunmiPrinterPlusPlatform.instance.sendImageLCD(image: image);
}