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