buildMethodRequestURL method

String buildMethodRequestURL(
  1. HttpMethod method,
  2. String? path,
  3. bool fullPath,
  4. Map<String, String?>? parameters,
)

Builds the URL for method using path or fullPath.

Implementation

String buildMethodRequestURL(HttpMethod method, String? path, bool fullPath,
        Map<String, String?>? parameters) =>
    _buildURL(path, fullPath, parameters, methodAcceptsQueryString(method));