request method
Send a HTTP request to uri
with the provided method
.
Implementation
SSHHttpClientRequest request(String method, Uri uri, bool body) {
final request = SSHHttpClientRequest._(client, method, uri, body);
return request;
}
Send a HTTP request to uri
with the provided method
.
SSHHttpClientRequest request(String method, Uri uri, bool body) {
final request = SSHHttpClientRequest._(client, method, uri, body);
return request;
}