* An Observable that contains a map of the required and optional parameters * specific to the route. * The map supports retrieving single and multiple values from the same parameter.
()
| 266 | * The map supports retrieving single and multiple values from the same parameter. |
| 267 | */ |
| 268 | get paramMap(): Observable<ParamMap> { |
| 269 | this._paramMap ??= this.params.pipe(map((p: Params): ParamMap => convertToParamMap(p))); |
| 270 | return this._paramMap; |
| 271 | } |
| 272 | |
| 273 | /** |
| 274 | * An Observable that contains a map of the query parameters available to all routes. |
nothing calls this directly
no test coverage detected