fromJSONString

Undocumented in source. Be warned that the author may not have intended to support it.
T
fromJSONString
(
T
)

Examples

Use fromJSONString to parse from a json string rather than a JSONValue

assert(fromJSONString!(int[])("[1, 2, 3]") == [1, 2, 3]);

Meta