printerAddImageBytes method

Future<void> printerAddImageBytes(
  1. Uint8List imageBytes, {
  2. Nf5503PrintAlign align = Nf5503PrintAlign.center,
})

添加内存图片到打印队列。

Implementation

Future<void> printerAddImageBytes(
  Uint8List imageBytes, {
  Nf5503PrintAlign align = Nf5503PrintAlign.center,
}) {
  throw UnimplementedError(
    'printerAddImageBytes() has not been implemented.',
  );
}