toJson method

Map<String, dynamic> toJson()

Implementation

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