ExamerUser

data class ExamerUser(    val id: String,     val name: String,     val email: String,     val phoneNumber: String?,     val photoUrl: Uri? = null)

A domain model class that represents a user with a id,name, email,phoneNumber and a photoUrl that will be used as the profile picture of the user.

Constructors

Link copied to clipboard
fun ExamerUser(    id: String,     name: String,     email: String,     phoneNumber: String?,     photoUrl: Uri? = null)

Properties

Link copied to clipboard
val email: String
Link copied to clipboard
val id: String
Link copied to clipboard
val name: String
Link copied to clipboard
val phoneNumber: String?
Link copied to clipboard
val photoUrl: Uri? = null