* Returns a named command parameter. * @param {string} key The parameter key to look up. * @return {*} The parameter value, or undefined if it has not been set.
(key)
| 67 | * @return {*} The parameter value, or undefined if it has not been set. |
| 68 | */ |
| 69 | getParameter(key) { |
| 70 | return this.parameters_[key] |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * @return {!Object<*>} The parameters to send with this command. |
no outgoing calls
no test coverage detected