Tiago Nunes
02/08/2021, 8:11 PMval jsonObject = jsonElement.jsonObject
How do I add a new entry to the object? (something like this:)
jsonObject.addProperty(name, value)
(name and value are both Strings)Paul Griffith
02/08/2021, 9:16 PMJsonObject
are immutable; there's no great solution (see this thread): https://kotlinlang.slack.com/archives/C7A1U5PTM/p1607458147418900Tiago Nunes
02/08/2021, 11:13 PM