sendZPLCommand method

Future<String?> sendZPLCommand(
  1. String zplCommand
)

Sends a raw ZPL command string directly to the printer.

Example: '^XA^FO50,50^A0N,50,50^FDHello^FS^XZ'

Implementation

Future<String?> sendZPLCommand(String zplCommand) {
  return _repository.sendZPLCommand(zplCommand);
}