Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class TaskViewModel : ViewModel() {
- @NativeCoroutines
- val _tasks = MutableStateFlow<List<Models.Task>>(viewModelScope, emptyList())
- @NativeCoroutinesState
- val tasks: StateFlow<List<Models.Task>> get() = _tasks
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement