Hello,
is it possible to parse JSON to data class not directly from string, but from JsonObject/JsonElement without converting it back to String and then do "parse"?
Antanas A.
04/22/2020, 11:40 AM
found
Copy code
public fun <T> fromJson(deserializer: DeserializationStrategy<T>, json: JsonElement): T {