proxy property

JSProxy get proxy

Use the chrome.proxy API to manage Chrome's proxy settings. This API relies on the ChromeSetting prototype of the type API for getting and setting the proxy configuration.

Implementation

JSProxy get proxy {
  var proxyNullable = this.proxyNullable;
  if (proxyNullable == null) {
    throw ApiNotAvailableException('chrome.proxy');
  }
  return proxyNullable;
}