private async void AcceptExecuted()
        {
            var result = new LocationWarningDialogResult(true, NeverShowAgain);

            CloseCompletionSource?.SetResult(result);

            await DialogNavigationService.Close(this, true, result);
        }
        private async void DenyExecuted()
        {
            var result = new LocationWarningDialogResult(false, false);

            CloseCompletionSource?.SetResult(result);

            await DialogNavigationService.Close(this, true, result);
        }