get

operator fun <T : Any> get(key: NonNullSavedStateHandleKey<T>): T

Get a value associated with the given key.

If no value is associated with the given key, the NonNullSavedStateHandleKey.defaultValue will be returned.

Otherwise, the value associated with the given key will be returned. It may throw kotlin.NullPointerException if the value associated with the given key is null.

See also

Throws

if the value associated with the given key is null.


operator fun <T : Any> get(key: NullableSavedStateHandleKey<T>): T?

Get a value associated with the given key.

If no value is associated with the given key, the NullableSavedStateHandleKey.defaultValue will be returned.

Otherwise, the value associated with the given key will be returned (null is possible).

See also