printBitmapCustom static method

Future printBitmapCustom(
  1. Uint8List image, [
  2. BitmapPrintType type = BitmapPrintType.normal
])

打印图⽚

Implementation

static Future printBitmapCustom(Uint8List image,
    [BitmapPrintType type = BitmapPrintType.normal]) async {
  await _channel.invokeMethod(
    'printBitmapCustom',
    {'image': image, 'type': type.value},
  );
}