redux
store-flow
/
com.episode6.redux
/
StoreFlow
Store
Flow
fun
<
State
>
StoreFlow
(
scope
:
CoroutineScope
,
initialValue
:
State
,
reducer
:
Reducer
<
State
>
,
middlewares
:
List
<
Middleware
<
State
>
>
=
emptyList()
)
:
StoreFlow
<
State
>
Content copied to clipboard
Creates a new
StoreFlow
, a redux store backed by a
kotlinx.coroutines.flow.StateFlow