* Convert JSON to struct * @param {!string} json JSON string * @returns {!object} Struct value for JSON
(json)
| 6408 | * @returns {!object} Struct value for JSON |
| 6409 | */ |
| 6410 | static fromJSON (json) { |
| 6411 | return StructOptional.fromObject(JSON.parse(json)) |
| 6412 | } |
| 6413 | |
| 6414 | /** |
| 6415 | * Create struct from object value |
nothing calls this directly
no test coverage detected