ProgressViewModel
class ProgressViewModel(val progress: LiveData<TimeTransition?> = ImmutableLiveData(null), val isBuffering: LiveData<Boolean> = ImmutableLiveData(false))
A ViewModel containing information required to display a progress bar.
Parameters
progress
The time transition information which contains the start and end point.
isBuffering
Whether or not the progress is in a buffering state.