toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ipConfigs = this.ipConfigs;
  final targetHttpsProxy = this.targetHttpsProxy;
  final targetSslProxy = this.targetSslProxy;
  return {
    'ipConfigs': ?ipConfigs,
    'targetHttpsProxy': ?targetHttpsProxy,
    'targetSslProxy': ?targetSslProxy,
  };
}