Skip to content

Instantly share code, notes, and snippets.

@jhonatansabadi
Created March 17, 2022 15:54
Show Gist options
  • Save jhonatansabadi/605a8bdccc818683a6f551540293933d to your computer and use it in GitHub Desktop.
Save jhonatansabadi/605a8bdccc818683a6f551540293933d to your computer and use it in GitHub Desktop.
//NÃO é o viewModelScope
coroutineScope.launch {
val name = getNameFromApi()
val lastName = getLastNameFromApi()
val user = User(name, lastName)
//....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment