Created
August 3, 2022 15:01
-
-
Save devrath/b513fe36ad96a5f053f926e85185c5eb to your computer and use it in GitHub Desktop.
Adding a fake user
This file contains hidden or 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
| data class FakeUser( | |
| override val id: String = "", | |
| override val firstName: String = "", | |
| override val lastName: String = "", | |
| override val email: String = "", | |
| override val image: String = "", | |
| override val mobile: Long = 0, | |
| override val gender: String = "", | |
| override val profileCompleted: Int = 0 | |
| ) : UserAbstract(id,firstName,lastName,email,image,mobile,gender,profileCompleted) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment