ImageInfo

data class ImageInfo(url: String, @Px() width: Int, @Px() height: Int) : Parcelable

Image information.

Constructors

ImageInfo
Link copied to clipboard
fun ImageInfo(url: String, @Px() width: Int, @Px() height: Int)

Functions

component1
Link copied to clipboard
operator fun component1(): String
component2
Link copied to clipboard
operator fun component2(): Int
component3
Link copied to clipboard
operator fun component3(): Int
copy
Link copied to clipboard
fun copy(url: String, @Px() width: Int, @Px() height: Int): ImageInfo
describeContents
Link copied to clipboard
abstract fun describeContents(): Int
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String
writeToParcel
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

height
Link copied to clipboard
val height: Int
image height in pixels.
url
Link copied to clipboard
val url: String
image URL.
width
Link copied to clipboard
val width: Int
image width in pixels.