Skip to content

Instantly share code, notes, and snippets.

@Adnan9011
Last active May 21, 2022 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adnan9011/a6a67ec48283d3857c56831b4fb10e25 to your computer and use it in GitHub Desktop.
Save Adnan9011/a6a67ec48283d3857c56831b4fb10e25 to your computer and use it in GitHub Desktop.
Builder
data class Person(
val name:String,
val family:String,
val age:Int = 0,
val nationalCode: String? = null,
val email: String? = null,
val phoneNumber: String? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment