ContainerViewModel
open class ContainerViewModel<T : Container<S, I, A>, S : MVIState, I : MVIIntent, A : MVIAction>(val container: T, start: Boolean = true) : ViewModel, Store<S, I, A> , Container<S, I, A>
A class that wraps a container in a ViewModel, and (if start is true) starts the container's store.
The store is started at creation using a viewModelScope.