Returns the JSON object as a "pretty" string.
auto JSON = JSON(["foo": JSON("bar")]); writeln(JSON.toPrettyString()); // output: // { // "foo": "bar" // }
Specifies the base amount of indentation for the output. Indentation is always done using tab characters.
writePrettyJSONString, toString
See Implementation
Returns the JSON object as a "pretty" string.