toggle menu
io.github.goquati
1.15.2
common
switch theme
search in API
io.github.goquati
/
io.github.goquati.kotlin.util.coroutine
/
StateEvent
State
Event
common
sealed
interface
StateEvent
<
K
:
Any
,
V
:
Any
>
Inheritors
Set
Unset
Members
Types
Set
Link copied to clipboard
common
data
class
Set
<
K
:
Any
,
V
:
Any
>
(
val
key
:
K
,
val
old
:
V
?
,
val
new
:
V
)
:
StateEvent
<
K
,
V
>
Unset
Link copied to clipboard
common
data
class
Unset
<
K
:
Any
,
V
:
Any
>
(
val
key
:
K
,
val
old
:
V
)
:
StateEvent
<
K
,
V
>
Properties
key
Link copied to clipboard
common
abstract
val
key
:
K