dispose method
Used to perform any disposing logic for the BaseViewModel.
This method is called in the ViewModelBuilderState.initState method.
Implementation
@override
void dispose() {
disposableBuildContext!.dispose();
disposableBuildContext = null;
_mounted = null;
super.dispose();
}