connectUSB method
Connects to a printer via USB using the device path.
Example: await connectUSB("/dev/usb/lp0");
Implementation
@override
Future<void> connectUSB(String path) async {
await _channel.invokeMethod("connectUSB", {"path": path});
}
Connects to a printer via USB using the device path.
Example: await connectUSB("/dev/usb/lp0");
@override
Future<void> connectUSB(String path) async {
await _channel.invokeMethod("connectUSB", {"path": path});
}