fix: address remaining PR review comments for Kotlin/Android/KMP docs

This commit is contained in:
ali
2026-03-07 19:31:59 +01:00
committed by Affaan Mustafa
parent 2d5dc62ad0
commit ab693f7b8a
4 changed files with 9 additions and 9 deletions

View File

@@ -31,7 +31,7 @@ data class ItemListState(
)
class ItemListViewModel(
private val getItems: GetItemsUseCase
private val getItems: GetItemUseCase
) : ViewModel() {
private val _state = MutableStateFlow(ItemListState())
val state: StateFlow<ItemListState> = _state.asStateFlow()