Ejemplo n.º 1
0
        public async Task ToogleDualBoot(bool isEnabled)
        {
            var enabledStr = isEnabled ? "Enabling" : "Disabling";

            Log.Information($"{enabledStr} Dual Boot");
            await phone.EnableDualBoot(isEnabled);

            Log.Information("Done");
        }