private async Task ClearCacheAsync() { if (await _interactionService.ClearCacheAsync()) { await _interactionService.ShowMessageAsync("cache emptied successful, the application will close now"); _interactionService.CloseApplication(); } else { await _interactionService.ShowMessageAsync("cache could not be emptied :("); } }