GrpcAgentCommunication constructor
Implementation
GrpcAgentCommunication(String host, int port) {
_channel = ClientChannel(
host,
port: port,
options: const ChannelOptions(credentials: ChannelCredentials.insecure()),
);
_client = AgentControlClient(_channel);
}