()
| 434 | } |
| 435 | |
| 436 | get queryParamMap(): ParamMap { |
| 437 | this._queryParamMap ??= convertToParamMap(this.queryParams); |
| 438 | return this._queryParamMap; |
| 439 | } |
| 440 | |
| 441 | toString(): string { |
| 442 | const url = this.url.map((segment) => segment.toString()).join('/'); |
nothing calls this directly
no test coverage detected