Skip to content

Instantly share code, notes, and snippets.

@aleweichandt
Created August 16, 2021 18:58
Show Gist options
  • Save aleweichandt/9a50122cc142db93b0a002321ff5789f to your computer and use it in GitHub Desktop.
Save aleweichandt/9a50122cc142db93b0a002321ff5789f to your computer and use it in GitHub Desktop.
Collection example
viewModelScope.launch {
getAllTodosUseCase(force)
.collect { response ->
(response as? Result.Success)?.let { _todos.value = it.result }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment