buildGrpcChannel function

ClientChannel buildGrpcChannel({
  1. required String host,
  2. int port = 443,
  3. bool secure = true,
})

Implementation

ClientChannel buildGrpcChannel({
  required String host,
  int port = 443,
  bool secure = true,
}) =>
    _channel_builder.ChannelBuilder()
        .buildChannel(host: host, port: port, secure: secure);