Screen

@Serializable
data class Screen(val screenWidth: Long, val screenHeight: Long, val devicePixelRatio: Double, val physicalScreenWidth: Double, val physicalScreenHeight: Double, val maxTouchPoints: Long)

Constructors

Link copied to clipboard
constructor(screenWidth: Long, screenHeight: Long, devicePixelRatio: Double, physicalScreenWidth: Double, physicalScreenHeight: Double, maxTouchPoints: Long)

Properties

Link copied to clipboard
@SerialName(value = "devicePixelRatio")
val devicePixelRatio: Double
Link copied to clipboard
@SerialName(value = "maxTouchPoints")
val maxTouchPoints: Long
Link copied to clipboard
@SerialName(value = "physicalScreenHeight")
val physicalScreenHeight: Double
Link copied to clipboard
@SerialName(value = "physicalScreenWidth")
val physicalScreenWidth: Double
Link copied to clipboard
@SerialName(value = "screenHeight")
val screenHeight: Long
Link copied to clipboard
@SerialName(value = "screenWidth")
val screenWidth: Long