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 GitHub
parent acdc9d2a47
commit ba4d1e2f9a

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.
*/