Open
Description
/**
* Similar to [launchIn], but starts the collection with [CoroutineStart.UNDISPATCHED] and allows overriding context
*/
fun <T> Flow<T>.launchNowIn(scope: CoroutineScope, context: CoroutineContext = EmptyCoroutineContext): Job =
scope.launch(context, CoroutineStart.UNDISPATCHED) {
collect()
}