setAsSystemProxy static method
Implementation
static void setAsSystemProxy(ProxyTypes types, String url, int port) {
switch (Platform.operatingSystem) {
case "windows":
// TODO
break;
case "linux":
setAsSystemProxyLinux(types, url, port);
break;
case "macos":
// TODO
break;
}
}