configLCD method
Configures the LCD screen with a specified status.
status: The desired status for the LCD (e.g., INIT, WAKE).
Returns a String indicating the result or null if unsuccessful.
Implementation
Future<String?> configLCD({required SunmiLCDStatus status}) async {
return await SunmiLcd.configLCD(status: status);
}