combineStates

fun <T1, T2, T3, TR> combineStates(flow1: StateFlow<T1>, flow2: StateFlow<T2>, flow3: StateFlow<T3>, transform: (t1: T1, t2: T2, t3: T3) -> TR): StateFlow<TR>(source)