Marc Knaup
MutableStateFlow
fun <Value: Any> persistedFlow(key: String, serializer: KSerializer<Value>): MutableStateFlow<Value?> = save(MutableStateFlow(value = load(key, serializer)), key, serializer)
save
The MutableStateFlow interface is not stable for inheritance in 3rd party libraries (…)
gildor
A modern programming language that makes developers happier.