remove

expect fun <T> remove(key: String): T?

Removes a value associated with the given key. If there is a StateFlow associated with the given key, they will be removed as well.

All changes to StateFlows previously returned by SavedStateHandle.getStateFlow won't be reflected in the saved state. Also that StateFlow won't receive any updates about new values associated by the given key.

Return

a value that was previously associated with the given key.

Parameters

key

a key

actual fun <T> remove(key: String): T?