GalleryItem

class GalleryItem(val link: String, val isVideo: Boolean = false, val headers: Map<String, String>? = null) : SourceItem

Represents an item in the gallery

Parameters

link

The item link

Constructors

Link copied to clipboard
constructor(link: String, isVideo: Boolean = false, headers: Map<String, String>? = null)

Properties

Link copied to clipboard
val headers: Map<String, String>? = null

Optional map of headers needed to open the link

Link copied to clipboard
val isVideo: Boolean = false

Specify if the link is a video, default is false

Link copied to clipboard
Link copied to clipboard