Skip to content

Instantly share code, notes, and snippets.

@travisdachi
Last active August 17, 2016 19:45
Show Gist options
  • Save travisdachi/b6191ae688711605898dbb0bfcfc7198 to your computer and use it in GitHub Desktop.
Save travisdachi/b6191ae688711605898dbb0bfcfc7198 to your computer and use it in GitHub Desktop.
inline fun <reified T> Gson.fromJson(string: String?): T? {
return fromJson(string, object : TypeToken<T>() {}.type)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment