ProxyInfo.fromJson constructor

ProxyInfo.fromJson(
  1. Map json_
)

Implementation

ProxyInfo.fromJson(core.Map json_)
  : this(
      excludedHosts:
          (json_['excludedHosts'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      host: json_['host'] as core.String?,
      pacUri: json_['pacUri'] as core.String?,
      port: json_['port'] as core.int?,
    );