Add helper property for retrieving current VM state (#257)

This commit is contained in:
David Perez 2023-11-17 16:28:15 -06:00 committed by Álison Fernandes
parent a789411b90
commit d1db7521ce

View file

@ -29,6 +29,11 @@ abstract class BaseViewModel<S, E, A>(
protected val eventChannel: Channel<E> = Channel(capacity = Channel.UNLIMITED)
private val internalActionChannel: Channel<A> = Channel(capacity = Channel.UNLIMITED)
/**
* A helper that returns the current state of the view model.
*/
protected val state: S get() = mutableStateFlow.value
/**
* A [StateFlow] representing state updates.
*/