* Returns true if the request has a body.
()
| 197 | * Returns true if the request has a body. |
| 198 | */ |
| 199 | hasBody() { |
| 200 | return (this.#body != null); |
| 201 | } |
| 202 | /** |
| 203 | * The HTTP method to use when requesting the URI. If no method |
| 204 | * has been explicitly set, then ``GET`` is used if the body is |
no outgoing calls
no test coverage detected