Skip to content

Instantly share code, notes, and snippets.

@aslamanver
Last active June 17, 2022 17:37
Show Gist options
  • Save aslamanver/8c5d5e88d6a4cc29cf7c2de291485d50 to your computer and use it in GitHub Desktop.
Save aslamanver/8c5d5e88d6a4cc29cf7c2de291485d50 to your computer and use it in GitHub Desktop.
Convert Java/Kotlin object to another object - 1
fun <T> Any.convert(classOfT: Class<T>): T = Gson().fromJson(Gson().toJson(this), classOfT)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment