* @param {string} key the parameter key to get. * @return {T} the stored parameter value. * @template T
(key)
| 302 | * @template T |
| 303 | */ |
| 304 | get(key) { |
| 305 | return this.map_.get(key) |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * @param {string} key the key to test. |
no test coverage detected