toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final host = this.host;
  final port = this.port;
  final portName = this.portName;
  final portSpecification = this.portSpecification;
  final proxyHeader = this.proxyHeader;
  final requestPath = this.requestPath;
  final response = this.response;
  return {
    'host': ?host,
    'port': ?port,
    'portName': ?portName,
    'portSpecification': ?portSpecification,
    'proxyHeader': ?proxyHeader,
    'requestPath': ?requestPath,
    'response': ?response,
  };
}