Persisted
Marks a property as persisted but NOT shown in UI.
Use for internal state like timestamps, counters, cached values.
Usage:
@Persisted
val lastSyncTime: Long = 0L
@Persisted(key = "hidden_apps")
val hiddenApps: Set<String> = emptySet()Content copied to clipboard