Skip to content

Instantly share code, notes, and snippets.

@jhonatansabadi
Created March 17, 2022 15:58
Show Gist options
  • Save jhonatansabadi/293a3a6169d67efec8eb0ea2699ee621 to your computer and use it in GitHub Desktop.
Save jhonatansabadi/293a3a6169d67efec8eb0ea2699ee621 to your computer and use it in GitHub Desktop.
//agora sim é o viewModelScope :)
viewModelScope.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