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