uri property

  1. @override
Uri get uri
override

The URI for the request.

This provides access to the path and query string for the request.

Implementation

@override
// TODO: implement uri
Uri get uri {
  Uri uriOrigin = Uri.parse(_request.url);
  return Uri().replace(
    path: uriOrigin.path,
    query: uriOrigin.query,
  );
}