clearProxyOverride method

  1. @override
Future<void> clearProxyOverride()

Clears the proxy settings. Network connections are not guaranteed to immediately use the new proxy setting; wait for the method to return before loading a page.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<void> clearProxyOverride() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await channel?.invokeMethod('clearProxyOverride', args);
}