lcdDoubleString static method

Future<void> lcdDoubleString(
  1. String topText,
  2. String bottomText
)

Display 2 lines string on LCD

Implementation

static Future<void> lcdDoubleString(String topText, String bottomText) async {
  return await _channel.invokeMethod(
      "LCD_DOUBLE_STRING", {"topText": topText, "bottomText": bottomText});
}