Padding

data class Padding(val top: Int, val right: Int, val bottom: Int, val left: Int)

Constructors

Link copied to clipboard
constructor(all: Int)
constructor(top: Int, right: Int, bottom: Int, left: Int)

Types

Link copied to clipboard
data class Builder(var top: Int, var right: Int, var bottom: Int, var left: Int)
Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val bottom: Int
Link copied to clipboard
Link copied to clipboard
val left: Int
Link copied to clipboard
val right: Int
Link copied to clipboard
val top: Int

Functions

Link copied to clipboard
operator fun Padding.plus(other: Padding): Padding