private async void UpdateValue()
        {
            var fizzBuzz = await _service.GetLatest();

            Value = fizzBuzz.Evalate();
            NotifyPropertyChanged(nameof(Value));
        }