launch
fun launch(lifetime: Lifetime, context: CoroutineContext = EmptyCoroutineContext, start: CoroutineStart = CoroutineStart.DEFAULT, action: suspend CoroutineScope.() -> Unit): Job
Deprecated
Use coroutine scope built in lifetime
Replace with
import kotlinx.coroutines.launch
Content copied to clipboard
lifetime.coroutineScope.launch(context, start, action)Content copied to clipboard