Stylianos Gakis
02/08/2022, 4:28 PMjw
02/08/2022, 4:29 PMStylianos Gakis
02/08/2022, 4:29 PMStylianos Gakis
02/08/2022, 4:30 PMbuildJsonObject
alternative that takes an existing JsonObject
as initial state, and working on a JsonObject
directly trying to edit it doesn’t seem to be what I want either as it’s immutable by default and there isn’t a Mutable alternative to it 🤔
Am I missing something again in the API or is it just a matter of making my own implementation of it by turning it into a .toMutableMap()
, doing the edits I want, and then turning it back into a JsonObject
myself.