Created
May 23, 2022 02:32
-
-
Save Adnan9011/d621f09e2e850e6f9697d317c89efeb0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val firstPerson = Person.Builder( | |
name = "Bob", //Necessary | |
family = "Ras") //Necessary | |
.age(32) //Optional | |
.email("[email protected]") //Optional | |
.phoneNumber("+19094XXX") //Optional | |
.nationalCode("09640XXXXX") //Optional | |
.create() //Create | |
val secondPerson = Person.Builder( | |
name = "Alis", //Necessary | |
family = "Jackson") //Necessary | |
.create() //Create |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment