ClientOptions constructor

ClientOptions({
  1. String serverAddress = defaultApiGatewayAddress,
  2. int serverPort = defaultApiGatewayPort,
  3. bool debug = false,
  4. Logger? logger,
  5. ChannelOptions? channelOptions,
})

Implementation

ClientOptions({
  this.serverAddress = defaultApiGatewayAddress,
  this.serverPort = defaultApiGatewayPort,
  this.debug = false,
  this.logger,
  this.channelOptions,
});