()
| 486 | } |
| 487 | |
| 488 | get queryParamMap(): ParamMap { |
| 489 | this._queryParamMap ??= convertToParamMap(this.queryParams); |
| 490 | return this._queryParamMap; |
| 491 | } |
| 492 | |
| 493 | toString(): string { |
| 494 | const url = this.url.map((segment) => segment.toString()).join('/'); |
nothing calls this directly
no test coverage detected