What is the equivalent <#CQCN9TRHN|moshi> method f...
# squarelibraries
c
What is the equivalent #moshi method for below #gson
fun Any.toJson(): String {
return Gson().toJson(this)
}
inline fun <reified T> Gson.fromJson(json: String) = this.fromJson<T>(json, object : TypeToken<T>() {}.type)