``` val call = client.request<String> { ...
# ktor
a
Copy code
val call = client.request<String> {
    url(URL("<http://127.0.0.1:8080/>"))
    method = HttpMethod.Get
}
This code in https://ktor.io/clients/http-client.html doesn't work