Skip to content

Instantly share code, notes, and snippets.

@labibmuhajir
Created December 1, 2021 03:11
Show Gist options
  • Save labibmuhajir/9b2095101e0a01287ac141183fd066db to your computer and use it in GitHub Desktop.
Save labibmuhajir/9b2095101e0a01287ac141183fd066db to your computer and use it in GitHub Desktop.
convert json to object with Gson
inline fun <reified T> String.jsonToObject(): T {
val gson = GsonBuilder().create()
return gson.fromJson(this, object: TypeToken<T>(){}.type)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment