get_Request method
Returns a request to get the content of the file at path.
See:
Implementation
http.Request get_Request(PathUri path) {
final request = http.Request('GET', _constructUri(path));
_addBaseHeaders(request);
return request;
}
Returns a request to get the content of the file at path.
See:
http.Request get_Request(PathUri path) {
final request = http.Request('GET', _constructUri(path));
_addBaseHeaders(request);
return request;
}