sendTextLCD method
Send text to the LCD screen with specified size and fill option.
Implementation
@override
Future<String?> sendTextLCD(
{required String text, required int size, required bool fill}) async {
return await methodChannel.invokeMethod<String>(
'sendTextLCD', {'text': text, 'size': size, 'fill': fill});
}