sendAll

suspend fun <T> ProducerScope<T>.sendAll(flow: Flow<T>)

Collects all the values from the given flow and send them to the producer. It is a shorthand for flow.collect { value -> send(value) }.