toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final excludedHosts = this.excludedHosts;
  final host = this.host;
  final pacUri = this.pacUri;
  final port = this.port;
  return {
    'excludedHosts': ?excludedHosts,
    'host': ?host,
    'pacUri': ?pacUri,
    'port': ?port,
  };
}