Skip to content

Instantly share code, notes, and snippets.

@agustarc
Last active April 30, 2019 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agustarc/c2d89ca192a7a3a915346029d1c24ec0 to your computer and use it in GitHub Desktop.
Save agustarc/c2d89ca192a7a3a915346029d1c24ec0 to your computer and use it in GitHub Desktop.
object AccountPreference : PreferenceHolder() {
var name: String by ReadWriteString(key = "pref_name", default = "leopold", predicate = { it.length > 2 })
var age: Int by ReadWriteInt()
var hireable: Boolean by ReadWriteBoolean()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment