State

data class State(val isVisible: Boolean = true, val isSelected: Boolean = false)

The state class for grid cells.

Constructors

Link copied to clipboard
constructor(isVisible: Boolean = true, isSelected: Boolean = false)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val isSelected: Boolean = false
Link copied to clipboard
val isVisible: Boolean = true

Functions

Link copied to clipboard
open override fun toString(): String