Is your feature request related to a problem? Please describe.
VectorStateFactory tries two approaches to create an initial state: Using the VectorViewModelFactory and using the constructor.
For applications using the SavedStateVectorViewModel, it becomes necessary to implement VectorViewModelFactory's initialState() method to restore this state from the SavedStateHandle, even though the most basic implementation here simply retrieves the state from the handle and returns it.
Describe the solution you'd like
An automated restoration of state from the SavedStateHandle in the case where the ViewModel does not implement the factory interface's initialState() method.