labelPrintBitmap method

  1. @override
Future<void> labelPrintBitmap(
  1. Uint8List bitmap,
  2. int width,
  3. int height
)
override

Implementation

@override
Future<void> labelPrintBitmap(Uint8List bitmap, int width, int height) async {
  await methodChannel.invokeMethod<void>('labelPrintBitmap',
      {"bitmap": bitmap, "width": width, "height": height});
}