Skip to content

Instantly share code, notes, and snippets.

@jhonatansabadi
Created March 17, 2022 15:54
Show Gist options
  • Save jhonatansabadi/c9e30453468f95f66cfc6cfbd8adb8d2 to your computer and use it in GitHub Desktop.
Save jhonatansabadi/c9e30453468f95f66cfc6cfbd8adb8d2 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