Profile

data class Profile(val userName: String = String(), val profilePictureUri: String? = null)

Data class representing a user profile.

Constructors

Link copied to clipboard
constructor(userName: String = String(), profilePictureUri: String? = null)

Properties

Link copied to clipboard

The URI of the user's profile picture.

Link copied to clipboard

The name of the user.

Functions

Link copied to clipboard

Extension function to convert Profile to PreferencesUserProfile.