createLuzidGrpcChannel function

ClientChannelBase createLuzidGrpcChannel({
  1. required String host,
  2. required int port,
})

Implementation

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