createTcpProxyList static method
Implementation
static Future<Empty> createTcpProxyList(PortList portList) async {
final channel = await Channel.getOpenIoTHubChannel();
final stub = SessionManagerClient(channel);
final response = await stub.createTcpProxyList(portList);
print('createTcpProxyList received: ${response}');
channel.shutdown();
return response;
}