SocialMedia

class SocialMedia(val url: URL, val name: String, val iconUrl: URL? = null, val icon: LocalIcon? = null)

SocialMedia is a data class that represents a social media account that Gravatar users can add to their profiles.

Constructors

Link copied to clipboard
constructor(url: URL, name: String, iconUrl: URL? = null, icon: LocalIcon? = null)

Properties

Link copied to clipboard
val icon: LocalIcon? = null

The LocalIcon for the social media platform.

Link copied to clipboard
val iconUrl: URL? = null

The URL of the icon for the social media platform.

Link copied to clipboard

The name of the social media platform.

Link copied to clipboard
val url: URL

The URL of the social media account.