print abstract method

Future<Uint8List> print({
  1. required Uint8List doc,
})

Prints a document using the Rongta printer.

The doc parameter specifies the document as a Uint8List containing the image data representing the document.

Returns a Future that completes with a Uint8List containing the image data representing the printed document.

Implementation

Future<Uint8List> print({
  required Uint8List doc,
});