proxyScheme property

String? proxyScheme
inherited

Proxy scheme

Implementation

String? get proxyScheme {
  final opt = getFirstOption<ProxySchemeOption>();
  return opt?.toString();
}
void proxyScheme=(String? value)
inherited

Implementation

set proxyScheme(final String? value) {
  if (value == null) {
    removeOptions<ProxySchemeOption>();
  } else {
    setOption(ProxySchemeOption(value));
  }
}