showLcdImage method

  1. @override
void showLcdImage(
  1. Uint8List img
)
override

Implementation

@override
void showLcdImage(Uint8List img){
  var map = HashMap<String, Object>();
  map["data"] = img;
  methodChannel.invokeMethod("showLcdImage", map);
}