private async void ListenCommandExecuted()
        {
            try
            {
                var granted = await SpeechAccessGranted();

                if (!granted)
                {
                    return;
                }

                _speechRecognizer.ListenForFirstKeyword().Subscribe(x => ListenedText = x);
            }
            catch (Exception ex)
            {
            }
        }