I've got `var connection by remember { mutableStat...
# compose
r
I've got
var connection by remember { mutableStateOf(null as Connection?) }
, how would I attach the flows coming from that connection? e.g.
val state by connection.state.collectAsState()
s
What's wrong with what you're showing here?