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