showLcdImage method

  1. @override
Future<void> showLcdImage(
  1. Uint8List img
)
override

Implementation

@override
Future<void> showLcdImage(Uint8List img) async {
  return await methodChannel
      .invokeMethod<void>('showLcdBitmap', {'img': img});
}