configLCD static method

Future<String?> configLCD({
  1. required SunmiLCDStatus status,
})

Configures the LCD screen with a specific status.

status: The desired LCD status, e.g., SunmiLCDStatus.INIT, SunmiLCDStatus.CLEAR.

Returns a String message from the printer if successful, or null otherwise.

Implementation

static Future<String?> configLCD({required SunmiLCDStatus status}) async {
  return await SunmiPrinterPlusPlatform.instance.configLCD(status: status);
}