is there a way to pretty print a `JsonObject` ?
# serialization
p
is there a way to pretty print a
JsonObject
?
b
Sure, just like any other object Json.encodeToString(jsonObject). You just need to build Json instance with pretty printing enabled
💯 1
p
thanks!