In the V1 iOS SDK it was possible to logout the current user as follows:
[Box logoutWithCallbacks:^(id <BoxOperationCallbacks> on)
{
on.after(^(BoxCallbackResponse response)
{
});
}];
How is it done using the V2 SDK?