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