get_Request method

BaseRequest get_Request(
  1. PathUri path
)

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;
}