karelpeeters
12/15/2019, 6:35 PMReceiveChannel.last()
is deprecated, it links to https://github.com/Kotlin/kotlinx.coroutines/issues/254 but what do I actually have to replace it by?Dominaezzz
12/15/2019, 6:59 PMReceiveChannel
being created? You might be able to replace it with Flow
. (Although you'd be moving from deprecated warnings to some experimental warnings lol).karelpeeters
12/15/2019, 7:01 PMDominaezzz
12/15/2019, 7:04 PM.consumeAsFlow().last()
.Kroppeb
12/15/2019, 7:05 PMkarelpeeters
12/15/2019, 7:05 PM