combine6
fun <T1, T2, T3, T4, T5, T6, R> combine6(flow: Flow<T1>, flow2: Flow<T2>, flow3: Flow<T3>, flow4: Flow<T4>, flow5: Flow<T5>, flow6: Flow<T6>, transform: suspend (T1, T2, T3, T4, T5, T6) -> R): Flow<R>
Combines the latest values of six flows through transform.
The resulting flow emits after every input has emitted at least once and re-emits whenever any input produces a new value. Bursts of updates may be conflated; transform always observes the latest values.