uninstallSoundVolumeView method

Future<bool> uninstallSoundVolumeView()

uninstallSoundVolumeView uninstalls SoundVolumeView in the system

Implementation

Future<bool> uninstallSoundVolumeView() async {
  final isPlatformSupported = platformSupported();
  if( !isPlatformSupported ) return false;

  String command = 'winget uninstall --id=NirSoft.SoundVolumeView -e';
  try {
    await shell.run(command);
    stateController.add(SoundVolumeViewState.uninstalled);
  } catch( error ) {
    stateController.add(SoundVolumeViewState.errorToUninstall);
  }
  return true;
}