Skip to content

Instantly share code, notes, and snippets.

private fun subscribeUi(adapter: GroupBallListAdapter) {
mGroupsBallViewModel.getLeagueGroup()
.observe(this, Observer { leagueGroup ->
leagueGroup?.standings?.let {
adapter.value = it
}
})
}