createLuzidGrpcChannel function
Implementation
ClientChannelBase createLuzidGrpcChannel(
{required String host, required int port}) {
return ClientChannel(host,
port: port,
options: ChannelOptions(credentials: ChannelCredentials.insecure()));
}