bindViewModelInstance method
Binds the provided viewModelInstance to the state machine
Implementation
@mustCallSuper
void bindViewModelInstance(ViewModelInstance viewModelInstance) {
_boundRuntimeViewModelInstance
?.removeAdvanceRequestListener(requestAdvance);
_boundRuntimeViewModelInstance = viewModelInstance;
viewModelInstance.addAdvanceRequestListener(requestAdvance);
}