Skip to content

Instantly share code, notes, and snippets.

@jhonatansabadi
Created March 17, 2022 15:54
Show Gist options
  • Save jhonatansabadi/b1baf318e635be546da3699a1af83fbc to your computer and use it in GitHub Desktop.
Save jhonatansabadi/b1baf318e635be546da3699a1af83fbc to your computer and use it in GitHub Desktop.
fun setUser(): User {
viewModelScope.launch {
val name = getNameFromApi()
val lastName = getLastNameFromApi()
_user.value = User(name, lastName)
}
}
fun setUserConfigurations(): User {
viewModelScope.launch {
val configuration = getConfigurationsFromApi()
_configurations.value = configuration
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment