TestControllerHttp constructor

TestControllerHttp({
  1. String apiServerName = "TestController",
  2. String host = "localhost",
  3. int port = 8080,
  4. String scheme = "http",
  5. ApiServerHttpClientBuilder? builder,
})

Implementation

TestControllerHttp(
  {
    String apiServerName = "TestController",
    String host = "localhost",
    int port = 8080,
    String scheme = "http",
    ApiServerHttpClientBuilder? builder,
  }
) : _builder = builder,
super(apiServerName: apiServerName, host: host, port: port, scheme: scheme);