molecule Flow
fun <T> moleculeFlow(mode: RecompositionMode, snapshotNotifier: SnapshotNotifier = defaultSnapshotNotifier(), body: @Composable () -> T): Flow<T>
Create a Flow which will continually recompose body
to produce a stream of T values when collected.