GrpcClientOptions constructor

GrpcClientOptions({
  1. String host = 'localhost',
  2. int port = 50051,
  3. List<Client> clients(
    1. ClientChannel channel
    )?,
  4. ChannelOptions? channelOptions,
})

Creates gRPC client options.

Implementation

GrpcClientOptions({
  this.host = 'localhost',
  this.port = 50051,
  this.clients,
  this.channelOptions,
});