I had a question about data classes and the object...
# klaxon
j
I had a question about data classes and the object binding API. We have an app with about 40 models. Using
data class
, it can take a few seconds to parse just 1 model from a JsonObject. If I have a JsonArray of say 10 things, it takes around 30 seconds to parse the entire thing. Using just
class
it is as fast as I would expect. Do you know off the top of your head why that would be? I am mainly just curious and it is not a deal breaker. The default toString() implementations of data class are a nice-to-have.