Skip to content

Instantly share code, notes, and snippets.

@devrath
Created August 3, 2022 15:01
Show Gist options
  • Select an option

  • Save devrath/b513fe36ad96a5f053f926e85185c5eb to your computer and use it in GitHub Desktop.

Select an option

Save devrath/b513fe36ad96a5f053f926e85185c5eb to your computer and use it in GitHub Desktop.
Adding a fake user
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