scottiedog45
liveData
viewModelScope
val testLangLiveData : LiveData<String?> = liveData { viewModelScope.launch { try { emit(repository.getUser().data.attributes?.locale) } catch (e: Exception) { } } }
Adam Powell
A modern programming language that makes developers happier.