There is a design pattern called MVVM (Model-View-View Model), in which a View Model is used as an abstraction of a View. The View Model supposed to expose streams of data to the View and interact with Model's data.
However there is a ViewModel class in Android's framework.
Question: does Android's ViewModel have something to do with the View Model from MVVM pattern?