In MvvmCross is there a way to ask the navigation service to close to a specific viewModel?
For example let's say I have 3 view models
A B C
I have navigated from A to B to C.
A -> B -> C
In the C view I press a Done button and would like to go back to view A.
Is there a way to do something like this in the C viewModel?
_navigationService.Close<A>(this);