Skip to content

Instantly share code, notes, and snippets.

@fo2rist
Created August 27, 2019 04:32
Show Gist options
  • Save fo2rist/aa3ab48f100719a7ee8663e5df8f6925 to your computer and use it in GitHub Desktop.
Save fo2rist/aa3ab48f100719a7ee8663e5df8f6925 to your computer and use it in GitHub Desktop.
Gson Examples. Two data classes
data class WithoutDefaultConstructor(
val intValue: Int,
val strValue: String = "default"
)
data class WithDefaultConstructor(
val intValue: Int = 1,
val strValue: String = "default"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment