cleanSystemProxy method

Future<void> cleanSystemProxy()

clean system proxy

Implementation

Future<void> cleanSystemProxy() async {
  switch (Platform.operatingSystem) {
    case "linux":
      _cleanSystemProxyLinux();
      break;
    case "windows":
      await _cleanSystemProxyWindows();
      break;
    case "macos":
      await _cleanSystemProxyMacos();
  }
}