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.