private async Task CheckLatestVersionAsync()
        {
            try
            {
                var newVersion = await NetworkUtils.CheckLatestVersionAsync(Plugin.BetaEnabled);

                this.LatestVersion       = newVersion;
                this.NewVersionAvailable = Plugin.PluginVersion < newVersion;
            }
            catch (Exception ex)
            {
                Debug.WriteLine($"ERROR: {nameof(CheckLatestVersionAsync)}\r\n{ex.Message}");
            }
        }