(path: string, createIfNone = true)
| 401 | } |
| 402 | |
| 403 | getProp(path: string, createIfNone = true) { |
| 404 | return this.props.query(path, createIfNone) || null |
| 405 | } |
| 406 | |
| 407 | getExtraProp(key: string, createIfNone = true) { |
| 408 | return this.getProp(getConvertedExtraKey(key), createIfNone) |
no test coverage detected