* 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.
()
| 226 | * The map supports retrieving single and multiple values from the same parameter. |
| 227 | */ |
| 228 | get paramMap(): Observable<ParamMap> { |
| 229 | this._paramMap ??= this.params.pipe(map((p: Params): ParamMap => convertToParamMap(p))); |
| 230 | return this._paramMap; |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * An Observable that contains a map of the query parameters available to all routes. |
nothing calls this directly
no test coverage detected