The kotlinx.coroutines.flow.Flow documentation states
- ### Not stable for inheritance
*- *The `Flow` interface is not stable for inheritance in 3rd party libraries*, as new methods
- might be added to this interface in the future, but is stable for use.
Consider whether it's safe for the Kotlin driver to inherit from it, as it does now, e.g.
Unable to find source-code formatter for language: kotlin. Available languages are: actionscript, ada, applescript, bash, c, c#, c++, cpp, css, erlang, go, groovy, haskell, html, java, javascript, js, json, lua, none, nyan, objc, perl, php, python, r, rainbow, ruby, scala, sh, sql, swift, visualbasic, xml, yaml
public class AggregateFlow<T : Any>(private val wrapped: AggregatePublisher<T>) : Flow<T> {