connectEthernet method
Connects to a printer over Ethernet using the provided ip address.
Example: await connectEthernet("192.168.0.100");
Implementation
@override
Future<void> connectEthernet(String ip) async {
await _channel.invokeMethod("connectEthernet", {"ip": ip});
}