sendImageLCD method
Send an image to the LCD screen.
Implementation
@override
Future<String?> sendImageLCD({required Uint8List image}) async {
return await methodChannel
.invokeMethod<String>('sendImageLCD', {'image': image});
}
Send an image to the LCD screen.
@override
Future<String?> sendImageLCD({required Uint8List image}) async {
return await methodChannel
.invokeMethod<String>('sendImageLCD', {'image': image});
}