``` launch(UI) { val json = fetchFromNet...
# coroutines
d
Copy code
launch(UI) {  
        val json = fetchFromNetwork()
        //call method that updates the UI
}
where
fetchFromNetwork()
your suspendable fun