Skip to content

Instantly share code, notes, and snippets.

@hardik-trivedi
Last active December 5, 2020 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hardik-trivedi/acbfd6c1b7ab08273f279bff1529c621 to your computer and use it in GitHub Desktop.
Save hardik-trivedi/acbfd6c1b7ab08273f279bff1529c621 to your computer and use it in GitHub Desktop.
Android ViewModel class using Shared NovelCovidApiClient
class CountryListViewModel(private val apiClient: NovelCovidApiClient) : ViewModel() {
val countries: LiveData<List<CountryItem>> = liveData {
emit(apiClient.getAffectedCountries())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment