url property

Uri url

The URI of the request.

Implementation

Uri get url {
  return Uri(
    scheme: scheme,
    host: host,
    queryParameters: queryParameters.isNotEmpty ? queryParameters : null,
    path: path,
  );
}