Skip to content

Instantly share code, notes, and snippets.

@agustarc
Created December 27, 2021 10:19
Show Gist options
  • Save agustarc/74e1a6cfa82a5741d1ed88f9b15384ee to your computer and use it in GitHub Desktop.
Save agustarc/74e1a6cfa82a5741d1ed88f9b15384ee to your computer and use it in GitHub Desktop.
suspend inline fun <T : Any> DataStore<Preferences>.storeValue(key: Preferences.Key<T>, value: T?) {
edit { preferences ->
if (value == null) {
preferences.remove(key)
} else {
preferences[key] = value
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment