GRPCInfo constructor

GRPCInfo({
  1. required String host,
  2. int port = 9090,
  3. ChannelCredentials credentials = const ChannelCredentials.insecure(),
  4. String? webHost,
  5. int webPort = 443,
  6. bool webTransportSecure = true,
})

Implementation

GRPCInfo({
  required this.host,
  this.port = 9090,
  this.credentials = const ChannelCredentials.insecure(),
  this.webHost,
  this.webPort = 443,
  this.webTransportSecure = true,
});