android-mvvm-coroutine
android-mvvm-coroutine copied to clipboard
can we put more data like this
val result: LiveData<Resource<List<Team>>> = Transformations.switchMap(query) { q,t -> if (q.isNullOrEmpty()) { AbsentLiveData.create() } else { sportRepository.searchTeam(q) } }