aggregateFlows
fun <T> aggregateFlows(withScope: CoroutineScope, vararg flows: Flow<T>, internalBufferSize: Int = 64): Flow<T>
Analog of merge function for Flows. The difference is in the usage of BroadcastChannel in this case
Analog of merge function for Flows. The difference is in the usage of BroadcastChannel in this case